From 80bfa76ac949dc036677d9a97fd6c1103ed40aae Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 16 Nov 2005 07:12:37 +0000 Subject: [PATCH] check for and use winsock2.h instead of winsock.h and I fixed a typo in the ifdefs where . was used instead of _! --- ares/configure.ac | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/ares/configure.ac b/ares/configure.ac index 24dc7ab11..60436fb0a 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -67,7 +67,7 @@ AC_CHECK_HEADERS( sys/socket.h \ sys/ioctl.h \ netdb.h \ - winsock.h \ + winsock2.h \ ws2tcpip.h \ netinet/in.h \ net/if.h \ @@ -89,8 +89,8 @@ dnl *Sigh* these are needed in order for net/if.h to get properly detected. #ifdef HAVE_SYS_SOCKET_H #include #endif -#ifdef HAVE_WINSOCK_H -#include +#ifdef HAVE_WINSOCK2_H +#include #endif ] ) @@ -104,8 +104,8 @@ AC_CHECK_TYPE(socklen_t, , #ifdef HAVE_SYS_SOCKET_H #include #endif -#ifdef HAVE_WINSOCK_H -#include +#ifdef HAVE_WINSOCK2_H +#include #endif ]) @@ -118,8 +118,8 @@ CARES_CHECK_CONSTANT( #ifdef HAVE_SYS_SOCKET_H #include #endif -#ifdef HAVE_WINSOCK_H -#include +#ifdef HAVE_WINSOCK2_H +#include #endif ], [PF_INET6], @@ -135,8 +135,8 @@ CARES_CHECK_CONSTANT( #ifdef HAVE_SYS_SOCKET_H #include #endif -#ifdef HAVE_WINSOCK_H -#include +#ifdef HAVE_WINSOCK2_H +#include #endif ], [AF_INET6], @@ -150,10 +150,10 @@ CARES_CHECK_STRUCT( #ifdef HAVE_SYS_TYPES_H #include #endif -#ifdef HAVE_WINSOCK_H -#include +#ifdef HAVE_WINSOCK2_H +#include #endif -#ifdef HAVE_WS2TCPIP.H +#ifdef HAVE_WS2TCPIP_H #include #endif #ifdef HAVE_NETINET_IN_H @@ -169,10 +169,10 @@ CARES_CHECK_STRUCT( #ifdef HAVE_SYS_TYPES_H #include #endif -#ifdef HAVE_WINSOCK_H -#include +#ifdef HAVE_WINSOCK2_H +#include #endif -#ifdef HAVE_WS2TCPIP.H +#ifdef HAVE_WS2TCPIP_H #include #endif #ifdef HAVE_NETINET_IN_H @@ -191,10 +191,10 @@ AC_CHECK_MEMBER(struct sockaddr_in6.sin6_scope_id, #ifdef HAVE_SYS_TYPES_H #include #endif -#ifdef HAVE_WINSOCK_H -#include +#ifdef HAVE_WINSOCK2_H +#include #endif -#ifdef HAVE_WS2TCPIP.H +#ifdef HAVE_WS2TCPIP_H #include #endif #ifdef HAVE_NETINET_IN_H @@ -210,10 +210,10 @@ AC_CHECK_MEMBER(struct addrinfo.ai_flags, #ifdef HAVE_SYS_TYPES_H #include #endif -#ifdef HAVE_WINSOCK_H -#include +#ifdef HAVE_WINSOCaK2_H +#include #endif -#ifdef HAVE_WS2TCPIP.H +#ifdef HAVE_WS2TCPIP_H #include #endif #ifdef HAVE_NETINET_IN_H