From: Vadim Zeitlin Date: Tue, 24 Oct 2006 12:08:05 +0000 (+0000) Subject: test that _INTEGRAL_MAX_BITS is defined before comparing with it; changed wxHAS_HUGE_... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1ad688c96f22a72cfccf68caf545d372bf7d6f17 test that _INTEGRAL_MAX_BITS is defined before comparing with it; changed wxHAS_HUGE_FILES to be either defined or undef'd for consistency with the other wxHAS_XXXs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42338 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/filefn.h b/include/wx/filefn.h index be3b3f1b53..6245adc989 100644 --- a/include/wx/filefn.h +++ b/include/wx/filefn.h @@ -169,23 +169,29 @@ enum wxFileKind #undef wxHAS_HUGE_FILES // detect compilers which have support for huge files (notice that the - // first case covers MSVC, so we don't have to test for it explicitly) - #if ((_INTEGRAL_MAX_BITS >= 64) || defined(_LARGE_FILES)) - #define wxHAS_HUGE_FILES 1 + // MSVC falls under _INTEGRAL_MAX_BITS >= 64 branch, so we don't have to + // test for it explicitly) + #if defined(_INTEGRAL_MAX_BITS) + #if _INTEGRAL_MAX_BITS >= 64 + #define wxHAS_HUGE_FILES 1 + #endif #elif defined(__MINGW32__) #define wxHAS_HUGE_FILES 1 - #else - // DMC, Watcom, Metrowerks and Borland don't have huge file support (or - // at least not all functions needed for it by wx) currently - #define wxHAS_HUGE_FILES 0 + #elif defined(_LARGE_FILES) + #define wxHAS_HUGE_FILES 1 #endif + // other Windows compilers (DMC, Watcom, Metrowerks and Borland) don't have + // huge file support (or at least not all functions needed for it by wx) + // currently + + // functions #if defined(__BORLANDC__) || defined(__WATCOMC__) #define _tell tell #endif - #if wxHAS_HUGE_FILES + #ifdef wxHAS_HUGE_FILES typedef wxLongLong_t wxFileOffset; #define wxFileOffsetFmtSpec wxLongLongFmtSpec #else @@ -213,7 +219,7 @@ enum wxFileKind #define wxWrite _write #endif #endif - #if wxHAS_HUGE_FILES + #ifdef wxHAS_HUGE_FILES #define wxSeek _lseeki64 #define wxLseek _lseeki64 #define wxTell _telli64 @@ -238,7 +244,7 @@ enum wxFileKind #define wxAccess wxMSLU__waccess #define wxMkDir wxMSLU__wmkdir #define wxRmDir wxMSLU__wrmdir - #if wxHAS_HUGE_FILES + #ifdef wxHAS_HUGE_FILES #define wxStat wxMSLU__wstati64 #else #define wxStat wxMSLU__wstat @@ -248,7 +254,7 @@ enum wxFileKind #define wxAccess _waccess #define wxMkDir _wmkdir #define wxRmDir _wrmdir - #if wxHAS_HUGE_FILES + #ifdef wxHAS_HUGE_FILES #define wxStat _wstati64 #else #define wxStat _wstat @@ -267,7 +273,7 @@ enum wxFileKind #else #define wxRmDir _rmdir #endif - #if wxHAS_HUGE_FILES + #ifdef wxHAS_HUGE_FILES #define wxStat _stati64 #else #define wxStat _stat @@ -277,7 +283,7 @@ enum wxFileKind // Types: Notice that Watcom is the only compiler to have a wide char // version of struct stat as well as a wide char stat function variant. // This was droped since OW 1.4 "for consistency across platforms". - #if wxHAS_HUGE_FILES + #ifdef wxHAS_HUGE_FILES #if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4) #define wxStructStat struct _wstati64 #else @@ -309,7 +315,7 @@ enum wxFileKind #endif #endif - #if wxHAS_HUGE_FILES + #ifdef wxHAS_HUGE_FILES // wxFile is present and supports large files. Currently wxFFile // doesn't have large file support with any Windows compiler (even // Win64 ones).