From 2198abb1c447b09943befa720072ef86acd7162a Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 4 Sep 2007 18:46:21 +0000 Subject: MFH: detect endianness in compile time when using Apple's GCC (fixes universal binary build) --- ext/hash/hash_tiger.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'ext/hash') 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; \ -- cgit v1.2.1