From 03a7462675d416a00e43ba64af0505039efe8852 Mon Sep 17 00:00:00 2001 From: Stan Cox Date: Wed, 10 Mar 2010 16:52:37 -0500 Subject: Be pessimistic about the gcc version as debuginfo has an undependable case (RH572260). * sdt.h (GNUC_VERSION): Check against gcc 4.5.0 --- includes/sys/sdt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/sys/sdt.h') diff --git a/includes/sys/sdt.h b/includes/sys/sdt.h index ed4b4af6..6ef961f2 100644 --- a/includes/sys/sdt.h +++ b/includes/sys/sdt.h @@ -86,7 +86,7 @@ #ifndef STAP_SDT_VOLATILE /* allow users to override */ #define GNUC_VERSION (__GNUC__ * 1000000 + __GNUC_MINOR__ * 10000 + __GNUC_PATCHLEVEL__ * 100 + __GNUC_RH_RELEASE__) -#if GNUC_VERSION >= 4040400 +#if GNUC_VERSION >= 4050000 #define STAP_SDT_VOLATILE #else #define STAP_SDT_VOLATILE volatile -- cgit