From 2ca2357dedb9a43bd4c0f9c01e8e7ed6bf19a2d2 Mon Sep 17 00:00:00 2001 From: Kevin Ollivier Date: Fri, 27 Jan 2006 22:54:41 +0000 Subject: [PATCH] Since Universal binaries compile the same file twice for different architectures, we need to allow WORDS_BIGENDIAN to be re-defined. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37186 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/platform.h b/include/wx/platform.h index 731bcc6187..1b6b013d9b 100644 --- a/include/wx/platform.h +++ b/include/wx/platform.h @@ -541,7 +541,7 @@ #endif #if defined (__WXMAC__) -# if !defined(WORDS_BIGENDIAN) && ( !defined(__MACH__) || ( defined(__BIG_ENDIAN__) && __BIG_ENDIAN__ ) ) +# if ( !defined(__MACH__) || ( defined(__BIG_ENDIAN__) && __BIG_ENDIAN__ ) ) # define WORDS_BIGENDIAN 1 # endif #endif -- 2.45.2