From e8d8ac8f234800e7285e4c43dacb4e2019d1ae38 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 15 Jan 2003 17:01:24 +0000 Subject: [PATCH] damn, had it right the first time --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 609b6edd5..f81305b4d 100644 --- a/configure.ac +++ b/configure.ac @@ -198,7 +198,7 @@ AC_TRY_COMPILE( AH_VERBATIM([HAVE___ATTRIBUTE__], [/* Define this if the GCC __attribute__ keyword is available */ #undef HAVE___ATTRIBUTE__ -#ifdef HAVE___ATTRIBUTE__ +#ifndef HAVE___ATTRIBUTE__ # define __attribute__(x) #endif]) @@ -213,7 +213,7 @@ AC_TRY_COMPILE( AH_VERBATIM([HAVE___BUILTIN_EXPECT], [/* Define this if the GCC __builtin_expect keyword is available */ #undef HAVE___BUILTIN_EXPECT -#ifdef HAVE___BUILTIN_EXPECT +#ifndef HAVE___BUILTIN_EXPECT # define __builtin_expect(x,c) x #endif])