From: David Elliott Date: Wed, 24 Oct 2007 21:43:36 +0000 (+0000) Subject: Don't check for wxMac before overriding WORDS_BIGENDIAN based on compiler X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5ed63bf59f05691c6e6a875abb89870742e2c020 Don't check for wxMac before overriding WORDS_BIGENDIAN based on compiler endianness definitions. This allows any toolkit to be compiled universally on OS X, not just wxMac. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/platform.h b/include/wx/platform.h index 7d32b43345..9076e454eb 100644 --- a/include/wx/platform.h +++ b/include/wx/platform.h @@ -553,12 +553,22 @@ # endif #endif -#if defined (__WXMAC__) -# if ( !defined(__MACH__) || ( defined(__BIG_ENDIAN__) && __BIG_ENDIAN__ ) ) -# define WORDS_BIGENDIAN 1 -# else -# undef WORDS_BIGENDIAN -# endif +/* + Handle Darwin gcc universal compilation. Don't do this in an Apple- + specific case since no sane compiler should be defining either + __BIG_ENDIAN__ or __LITTLE_ENDIAN__ unless it really is generating + code that will be hosted on a machine with the appropriate endianness. + If a compiler defines neither, assume the user or configure set + WORDS_BIGENDIAN appropriately. + */ +#if defined(__BIG_ENDIAN__) +# undef WORDS_BIGENDIAN +# define WORDS_BIGENDIAN 1 +#elif defined(__LITTLE_ENDIAN__) +# undef WORDS_BIGENDIAN +#elif defined(__WXMAC__) && !defined(WORDS_BIGENDIAN) +/* According to Stefan even ancient Mac compilers defined __BIG_ENDIAN__ */ +# warning "Compiling wxMac with probably wrong endianness" #endif /*