From: Antony Dovgal Date: Tue, 4 Sep 2007 18:46:21 +0000 (+0000) Subject: MFH: detect endianness in compile time when using Apple's GCC (fixes universal binary... X-Git-Tag: php-5.2.5RC1~220 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2198abb1c447b09943befa720072ef86acd7162a;p=php MFH: detect endianness in compile time when using Apple's GCC (fixes universal binary build) --- diff --git a/Zend/zend_strtod.c b/Zend/zend_strtod.c index 49e14a60b2..bf0c70d7df 100644 --- a/Zend/zend_strtod.c +++ b/Zend/zend_strtod.c @@ -136,6 +136,16 @@ typedef unsigned long int uint32_t; # endif #endif +#if (defined(__APPLE__) || defined(__APPLE_CC__)) && (defined(__BIG_ENDIAN__) || defined(__LITTLE_ENDIAN__)) +# if defined(__LITTLE_ENDIAN__) +# undef WORDS_BIGENDIAN +# else +# if defined(__BIG_ENDIAN__) +# define WORDS_BIGENDIAN +# endif +# endif +#endif + #ifdef WORDS_BIGENDIAN #define IEEE_BIG_ENDIAN #else diff --git a/ext/date/lib/parse_tz.c b/ext/date/lib/parse_tz.c index 1d2ff86e3f..d55553bced 100644 --- a/ext/date/lib/parse_tz.c +++ b/ext/date/lib/parse_tz.c @@ -33,6 +33,16 @@ #endif #include "timezonedb.h" +#if (defined(__APPLE__) || defined(__APPLE_CC__)) && (defined(__BIG_ENDIAN__) || defined(__LITTLE_ENDIAN__)) +# if defined(__LITTLE_ENDIAN__) +# undef WORDS_BIGENDIAN +# else +# if defined(__BIG_ENDIAN__) +# define WORDS_BIGENDIAN +# endif +# endif +#endif + #ifdef WORDS_BIGENDIAN #define timelib_conv_int(l) (l) #else diff --git a/ext/hash/hash_tiger.c b/ext/hash/hash_tiger.c index 6e3e7dc2b7..5309cb7182 100644 --- a/ext/hash/hash_tiger.c +++ b/ext/hash/hash_tiger.c @@ -23,6 +23,16 @@ #include "php_hash_tiger.h" #include "php_hash_tiger_tables.h" +#if (defined(__APPLE__) || defined(__APPLE_CC__)) && (defined(__BIG_ENDIAN__) || defined(__LITTLE_ENDIAN__)) +# if defined(__LITTLE_ENDIAN__) +# undef WORDS_BIGENDIAN +# else +# if defined(__BIG_ENDIAN__) +# define WORDS_BIGENDIAN +# endif +# endif +#endif + /* {{{ */ #define save_abc \ aa = a; \