diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2021-09-27 10:36:06 +0200 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2021-09-28 19:29:30 +0200 |
commit | 2b7e56aab353188e7919cd941150abb77ffc4d97 (patch) | |
tree | 00ca10302cc090554fd5432e0dfe7df74f7a261a | |
parent | 7a0c160473a930e3479d38151580736a5dba7dce (diff) | |
download | curl-2b7e56aab353188e7919cd941150abb77ffc4d97.tar.gz |
config-win32ce: enable WinSock 2
WinSock 2.2 is supported by Windows CE .NET 4.1 (from 2002, out of
support since 2013).
Ref: https://docs.microsoft.com/en-us/previous-versions/windows/embedded/ms899586(v=msdn.10)
Closes https://github.com/curl/curl/pull/7778
-rw-r--r-- | lib/config-win32ce.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/config-win32ce.h b/lib/config-win32ce.h index 2cf30e9b9..889028b26 100644 --- a/lib/config-win32ce.h +++ b/lib/config-win32ce.h @@ -111,10 +111,10 @@ #define HAVE_WINDOWS_H 1 /* Define if you have the <winsock2.h> header file. */ -/* #define HAVE_WINSOCK2_H 1 */ +#define HAVE_WINSOCK2_H 1 /* Define if you have the <ws2tcpip.h> header file. */ -/* #define HAVE_WS2TCPIP_H 1 */ +#define HAVE_WS2TCPIP_H 1 /* ---------------------------------------------------------------- */ /* OTHER HEADER INFO */ |