mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
include ws2tcpip.h in an attempt to detect some of the ipv6 structs better
in mingw builds
This commit is contained in:
parent
772b64d9d3
commit
b2e553a82e
@ -68,6 +68,7 @@ AC_CHECK_HEADERS(
|
||||
sys/ioctl.h \
|
||||
netdb.h \
|
||||
winsock.h \
|
||||
ws2tcpip.h \
|
||||
netinet/in.h \
|
||||
net/if.h \
|
||||
arpa/nameser.h \
|
||||
@ -152,6 +153,9 @@ CARES_CHECK_STRUCT(
|
||||
#ifdef HAVE_WINSOCK_H
|
||||
#include <winsock.h>
|
||||
#endif
|
||||
#ifdef HAVE_WS2TCPIP.H
|
||||
#include <ws2tcpip.h>
|
||||
#endif
|
||||
#ifdef HAVE_NETINET_IN_H
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
@ -168,6 +172,9 @@ CARES_CHECK_STRUCT(
|
||||
#ifdef HAVE_WINSOCK_H
|
||||
#include <winsock.h>
|
||||
#endif
|
||||
#ifdef HAVE_WS2TCPIP.H
|
||||
#include <ws2tcpip.h>
|
||||
#endif
|
||||
#ifdef HAVE_NETINET_IN_H
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
@ -187,6 +194,9 @@ AC_CHECK_MEMBER(struct sockaddr_in6.sin6_scope_id,
|
||||
#ifdef HAVE_WINSOCK_H
|
||||
#include <winsock.h>
|
||||
#endif
|
||||
#ifdef HAVE_WS2TCPIP.H
|
||||
#include <ws2tcpip.h>
|
||||
#endif
|
||||
#ifdef HAVE_NETINET_IN_H
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
@ -203,6 +213,9 @@ AC_CHECK_MEMBER(struct addrinfo.ai_flags,
|
||||
#ifdef HAVE_WINSOCK_H
|
||||
#include <winsock.h>
|
||||
#endif
|
||||
#ifdef HAVE_WS2TCPIP.H
|
||||
#include <ws2tcpip.h>
|
||||
#endif
|
||||
#ifdef HAVE_NETINET_IN_H
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user