Commit def0336e authored by Michael's avatar Michael

increase mingw's minimum _WIN32_WINNT version

parent c9c9a777
...@@ -44,10 +44,10 @@ ...@@ -44,10 +44,10 @@
#ifdef __MINGW32__ #ifdef __MINGW32__
// Require Windows XP or higher with MinGW for getaddrinfo(). // Require Windows XP or higher with MinGW for getaddrinfo().
#if(_WIN32_WINNT >= 0x0501) #if(_WIN32_WINNT >= 0x0600)
#else #else
#undef _WIN32_WINNT #undef _WIN32_WINNT
#define _WIN32_WINNT 0x0501 #define _WIN32_WINNT 0x0600
#endif #endif
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment