From 4ba6d656c3a59e680dbae976cceab15a71c289ea Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Thu, 27 Jan 2011 13:00:16 +0000 Subject: [PATCH] __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 --- src/tiff/libtiff/tif_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.2