From a0a0c4d56e9ce28effda40529ac107e8cf621a73 Mon Sep 17 00:00:00 2001 From: "Emilio G. Cota" Date: Mon, 13 Oct 2014 22:31:25 -0400 Subject: [PATCH] compiler: use __GNUC__ instead of the undefined __GNUC_MAJOR__ gcc defines the major number with __GNUC__, not __GNUC_MAJOR__: https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html Signed-off-by: Emilio G. Cota Signed-off-by: Mathieu Desnoyers --- urcu/compiler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/urcu/compiler.h b/urcu/compiler.h index 1e30903..2e0237e 100644 --- a/urcu/compiler.h +++ b/urcu/compiler.h @@ -97,8 +97,8 @@ (unsigned long) (v)) #if defined (__GNUC__) \ - && ((__GNUC_MAJOR__ == 4) && (__GNUC_MINOR__ >= 5) \ - || __GNUC_MAJOR__ >= 5) + && ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5) \ + || __GNUC__ >= 5) #define CDS_DEPRECATED(msg) \ __attribute__((deprecated(msg))) #else -- 2.34.1