Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6abcf1a

Browse files
committed
Decrease compiler version where _WIN32_WINNT macro set to 0x600, so our MSVC2013 builds have acces to Vista locale functions
1 parent a76eda3 commit 6abcf1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/port/win32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Also for VS2015, add a define that stops compiler complaints about
1010
* using the old Winsock API.
1111
*/
12-
#if defined(_MSC_VER) && _MSC_VER >= 1900
12+
#if defined(_MSC_VER) && _MSC_VER >= 1800
1313
#define _WINSOCK_DEPRECATED_NO_WARNINGS
1414
#define MIN_WINNT 0x0600
1515
#else

0 commit comments

Comments
 (0)