gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 35/63: curl-win32.h: Enable Unix Domain Sockets bas


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 35/63: curl-win32.h: Enable Unix Domain Sockets based on the Windows SDK version
Date: Fri, 07 Jun 2019 18:36:57 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 28526e9c80f7c923fac0aef503c7a63d84994282
Author: Steve Holme <address@hidden>
AuthorDate: Fri May 24 07:02:06 2019 +0100

    curl-win32.h: Enable Unix Domain Sockets based on the Windows SDK version
    
    Microsoft added support for Unix Domain Sockets in Windows 10 1803
    (RS4). Rather than expect the user to enable Unix Domain Sockets by
    uncommenting the #define that was added in 0fd6221f we use the RS4
    pre-processor variable that is present in newer versions of the
    Windows SDK.
    
    Closes #3939
---
 lib/config-win32.h | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/lib/config-win32.h b/lib/config-win32.h
index 08cfd0d4c..14bd084fe 100644
--- a/lib/config-win32.h
+++ b/lib/config-win32.h
@@ -727,8 +727,12 @@ Vista
 #define USE_WIN32_CRYPTO
 
 /* Define to use Unix sockets. */
-#if defined(_MSC_VER) && _MSC_VER >= 1900
-/* #define USE_UNIX_SOCKETS */
+#if defined(_MSC_VER) && (_MSC_VER >= 1500)
+/* sdkddkver.h first shipped with Platform SDK v6.0A included with VS2008 */
+#include <sdkddkver.h>
+#if defined(NTDDI_WIN10_RS4)
+#define USE_UNIX_SOCKETS
+#endif
 #endif
 
 /* ---------------------------------------------------------------- */

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]