From 8f7eeefcba9387ecd047b363edc1b4595a6cbb5e Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Tue, 7 Jun 2005 20:18:11 +0000 Subject: [PATCH] correcting condition git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34586 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 59b66e8ff7..21a063a943 100644 --- a/include/wx/platform.h +++ b/include/wx/platform.h @@ -561,7 +561,7 @@ #endif #if defined (__WXMAC__) -# ifndef WORDS_BIGENDIAN && ( !defined(__MACH__) || ( defined(__BIG_ENDIAN__) && __BIG_ENDIAN__ ) ) +# if !defined(WORDS_BIGENDIAN) && ( !defined(__MACH__) || ( defined(__BIG_ENDIAN__) && __BIG_ENDIAN__ ) ) # define WORDS_BIGENDIAN 1 # endif #endif -- 2.45.2