From b0c8130cec05f40ce926058d18fbc520b1a0e856 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Tue, 11 Oct 2005 23:27:57 +0000 Subject: Change __OPTIMIZE__ > 0 to defined(__OPTIMIZE__) as in glibc-2.3.5. --- include/features.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/features.h b/include/features.h index 07680a09e..0f4921b9f 100644 --- a/include/features.h +++ b/include/features.h @@ -266,7 +266,7 @@ # define __USE_REENTRANT 1 #endif -#if _FORTIFY_SOURCE > 0 && __GNUC_PREREQ (4, 1) && __OPTIMIZE__ > 0 +#if _FORTIFY_SOURCE > 0 && __GNUC_PREREQ (4, 1) && defined(__OPTIMIZE__) # if _FORTIFY_SOURCE == 1 # define __USE_FORTIFY_LEVEL 1 # elif _FORTIFY_SOURCE > 1 -- cgit v1.2.3