From def0336e9ab1c11d45092b7614be4f8e794480b3 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 6 Feb 2016 22:26:50 +1100 Subject: [PATCH] increase mingw's minimum _WIN32_WINNT version --- src/windows.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/windows.hpp b/src/windows.hpp index b90e17b8..44e86c68 100644 --- a/src/windows.hpp +++ b/src/windows.hpp @@ -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