MINGW fix

git-svn-id: svn://ultimatepp.org/upp/trunk@6963 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-02-27 15:45:33 +00:00
parent 06e03c102e
commit 18dda4a05b

View file

@ -8,9 +8,13 @@
#define COMPILER_GCC 1
#if __WIN32
#define COMPILER_MINGW
#define PLATFORM_WIN32
#if defined(__WIN32) || defined(_WIN32) || defined(WIN32)
#define COMPILER_MINGW 1
#define PLATFORM_WIN32 1
#undef WINVER
#undef _WIN32_WINNT
#define _WIN32_WINNT 0x0501
#define WINVER WindowsXP
#endif
#if __unix || __unix__ || __APPLE__