Another MinGW compilation fix

This is partial cherry-pick of e1fdd3f3d9a0a065eb27c8bc176f51a47e43e412
from the main repository.
This commit is contained in:
Vadim Zeitlin 2001-02-07 02:13:22 +00:00 committed by Vadim Zeitlin
parent 8886d0baf8
commit 2f647e587d

View File

@ -164,7 +164,7 @@ typedef short INT16;
#define INT32_DEFINED
#elif (_MSC_VER >= 1200) || (__BORLANDC__ >= 0x550) || \
((defined(__MINGW32__) || defined(__CYGWIN__)) \
&& ((__GNUC__>=2) && (__GNUC_MINOR__>=95)))
&& ((__GNUC__>2) || ((__GNUC__==2) && (__GNUC_MINOR__>=95))))
/* INT32 is defined in windows.h for these compilers */
#define INT32_DEFINED
#include <windows.h>