From: Stefan Csomor Date: Thu, 27 Jan 2011 13:00:16 +0000 (+0000) Subject: __BIG_ENDIAN__ is either defined AND has a value of 1, or it is not defined at all... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4ba6d656c3a59e680dbae976cceab15a71c289ea __BIG_ENDIAN__ is either defined AND has a value of 1, or it is not defined at all, so #ifdef is sufficient git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66786 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/tiff/libtiff/tif_config.h b/src/tiff/libtiff/tif_config.h index f85ecbe635..b0840c777f 100644 --- a/src/tiff/libtiff/tif_config.h +++ b/src/tiff/libtiff/tif_config.h @@ -32,7 +32,7 @@ #define SIZEOF_LONG 4 #endif -#if __BIG_ENDIAN__ +#ifdef __BIG_ENDIAN__ /* Set the native cpu bit order */ #define HOST_FILLORDER FILLORDER_MSB2LSB