summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-04-11 13:45:56 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-04-11 15:54:42 +0200
commitf79913050dfa127a8a62b4d340bb5415b83f3725 (patch)
treeabc1d5267545205eabb7e846ce3a5deb68b0c0df
parent580da62d84ba5077f420732c63da718bce4cb96e (diff)
downloadgnurl-f79913050dfa127a8a62b4d340bb5415b83f3725.tar.gz
gnurl-f79913050dfa127a8a62b4d340bb5415b83f3725.tar.bz2
gnurl-f79913050dfa127a8a62b4d340bb5415b83f3725.zip
system.h: fix mingw section
Reported-by: Marcel Raad Fixes #1408 Closes #1409
-rw-r--r--include/curl/system.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/include/curl/system.h b/include/curl/system.h
index f4edc436d..ed3a55c95 100644
--- a/include/curl/system.h
+++ b/include/curl/system.h
@@ -243,8 +243,10 @@
# define CURLSYS_SIZEOF_CURL_OFF_T 8
# define CURLSYS_SUFFIX_CURL_OFF_T LL
# define CURLSYS_SUFFIX_CURL_OFF_TU ULL
-# define CURLSYS_TYPEOF_CURL_SOCKLEN_T int
+# define CURLSYS_TYPEOF_CURL_SOCKLEN_T socklen_t
# define CURLSYS_SIZEOF_CURL_SOCKLEN_T 4
+# define CURLSYS_PULL_SYS_TYPES_H 1
+# define CURLSYS_PULL_WS2TCPIP_H 1
#elif defined(__VMS)
# if defined(__VAX)
@@ -444,6 +446,17 @@
# define CURLSYS_TYPEOF_CURL_SOCKLEN_T int
#endif
+/* CURLSYS_PULL_WS2TCPIP_H is defined above when inclusion of header file */
+/* ws2tcpip.h is required here to properly make type definitions below. */
+#ifdef CURLSYS_PULL_WS2TCPIP_H
+# ifndef WIN32_LEAN_AND_MEAN
+# define WIN32_LEAN_AND_MEAN
+# endif
+# include <windows.h>
+# include <winsock2.h>
+# include <ws2tcpip.h>
+#endif
+
/* CURLSYS_PULL_SYS_TYPES_H is defined above when inclusion of header file */
/* sys/types.h is required here to properly make type definitions below. */
#ifdef CURLSYS_PULL_SYS_TYPES_H