test for __MINGW64__ in the huge files support section

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2008-08-30 12:52:47 +00:00
parent d12fd3ebcf
commit 98225d0279

View File

@ -163,6 +163,7 @@ enum wxFileKind
#elif (defined(__WXMSW__) || defined(__OS2__)) && !defined(__WXPALMOS__) && \ #elif (defined(__WXMSW__) || defined(__OS2__)) && !defined(__WXPALMOS__) && \
( \ ( \
defined(__VISUALC__) || \ defined(__VISUALC__) || \
defined(__MINGW64__) || \
(defined(__MINGW32__) && !defined(__WINE__) && \ (defined(__MINGW32__) && !defined(__WINE__) && \
wxCHECK_W32API_VERSION(0, 5)) || \ wxCHECK_W32API_VERSION(0, 5)) || \
defined(__MWERKS__) || \ defined(__MWERKS__) || \
@ -176,7 +177,7 @@ enum wxFileKind
// detect compilers which have support for huge files // detect compilers which have support for huge files
#if defined(__VISUALC__) #if defined(__VISUALC__)
#define wxHAS_HUGE_FILES 1 #define wxHAS_HUGE_FILES 1
#elif defined(__MINGW32__) #elif defined(__MINGW32__) || defined(__MINGW64__)
#define wxHAS_HUGE_FILES 1 #define wxHAS_HUGE_FILES 1
#elif defined(_LARGE_FILES) #elif defined(_LARGE_FILES)
#define wxHAS_HUGE_FILES 1 #define wxHAS_HUGE_FILES 1