From df7ffd2999fc203da08777f00138f03667b61c2a Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Wed, 12 Jan 2005 16:34:31 +0000 Subject: 20701: fix compilation on Mac OS X: define is __APPLE__, not APPLE --- Src/system.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src') diff --git a/Src/system.h b/Src/system.h index 1c1de8da3..ccb125088 100644 --- a/Src/system.h +++ b/Src/system.h @@ -681,7 +681,7 @@ extern short ospeed; # define IS_DIRSEP(c) ((c) == '/') #endif -#if defined(__GNUC__) && !defined(APPLE) +#if defined(__GNUC__) && !defined(__APPLE__) /* Does the OS X port of gcc still gag on __attribute__? */ #define UNUSED(x) x __attribute__((__unused__)) #else -- cgit 1.4.1