increase mingw's minimum _WIN32_WINNT version

This commit is contained in:
Michael 2016-02-06 22:26:50 +11:00
parent c9c9a777d6
commit def0336e9a

View File

@ -44,10 +44,10 @@
#ifdef __MINGW32__
// Require Windows XP or higher with MinGW for getaddrinfo().
#if(_WIN32_WINNT >= 0x0501)
#if(_WIN32_WINNT >= 0x0600)
#else
#undef _WIN32_WINNT
#define _WIN32_WINNT 0x0501
#define _WIN32_WINNT 0x0600
#endif
#endif