Skip to content

Commit

Permalink
system.h: fix mingw section
Browse files Browse the repository at this point in the history
Reported-by: Marcel Raad
Fixes #1408
  • Loading branch information
bagder committed Apr 11, 2017
1 parent 5ed16e6 commit a42b28d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions include/curl/system.h
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,8 @@
# define CURLSYS_SUFFIX_CURL_OFF_TU ULL
# define CURLSYS_TYPEOF_CURL_SOCKLEN_T int
# 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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a42b28d

Please sign in to comment.