From dfef6f24d586663cb76d73145abc4a9bb7994df3 Mon Sep 17 00:00:00 2001 From: Fabio Alessandrelli Date: Tue, 20 Feb 2018 14:41:17 +0100 Subject: [PATCH] Small patch to change mbedtls _WIN32_WINNT We are using 0x0601 as min anyway. This avoids SOCKADDR_STORAGE error on uwp build --- thirdparty/mbedtls/library/net_sockets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thirdparty/mbedtls/library/net_sockets.c b/thirdparty/mbedtls/library/net_sockets.c index 345f10227b9..754049005dc 100644 --- a/thirdparty/mbedtls/library/net_sockets.c +++ b/thirdparty/mbedtls/library/net_sockets.c @@ -49,7 +49,7 @@ #undef _WIN32_WINNT #endif /* Enables getaddrinfo() & Co */ -#define _WIN32_WINNT 0x0501 +#define _WIN32_WINNT 0x0601 #include #include