diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-11-16 07:12:37 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-11-16 07:12:37 +0000 |
commit | 80bfa76ac949dc036677d9a97fd6c1103ed40aae (patch) | |
tree | 01fffce9d1db37f04f6cfb212934101a5c3b91cd /ares | |
parent | b2e553a82e37013bf4c0814214f183aebd96c142 (diff) |
check for and use winsock2.h instead of winsock.h and I fixed a typo in the
ifdefs where . was used instead of _!
Diffstat (limited to 'ares')
-rw-r--r-- | ares/configure.ac | 42 |
1 files 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 <sys/socket.h> #endif -#ifdef HAVE_WINSOCK_H -#include <winsock.h> +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> #endif ] ) @@ -104,8 +104,8 @@ AC_CHECK_TYPE(socklen_t, , #ifdef HAVE_SYS_SOCKET_H #include <sys/socket.h> #endif -#ifdef HAVE_WINSOCK_H -#include <winsock.h> +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> #endif ]) @@ -118,8 +118,8 @@ CARES_CHECK_CONSTANT( #ifdef HAVE_SYS_SOCKET_H #include <sys/socket.h> #endif -#ifdef HAVE_WINSOCK_H -#include <winsock.h> +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> #endif ], [PF_INET6], @@ -135,8 +135,8 @@ CARES_CHECK_CONSTANT( #ifdef HAVE_SYS_SOCKET_H #include <sys/socket.h> #endif -#ifdef HAVE_WINSOCK_H -#include <winsock.h> +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> #endif ], [AF_INET6], @@ -150,10 +150,10 @@ CARES_CHECK_STRUCT( #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif -#ifdef HAVE_WINSOCK_H -#include <winsock.h> +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> #endif -#ifdef HAVE_WS2TCPIP.H +#ifdef HAVE_WS2TCPIP_H #include <ws2tcpip.h> #endif #ifdef HAVE_NETINET_IN_H @@ -169,10 +169,10 @@ CARES_CHECK_STRUCT( #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif -#ifdef HAVE_WINSOCK_H -#include <winsock.h> +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> #endif -#ifdef HAVE_WS2TCPIP.H +#ifdef HAVE_WS2TCPIP_H #include <ws2tcpip.h> #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 <sys/types.h> #endif -#ifdef HAVE_WINSOCK_H -#include <winsock.h> +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> #endif -#ifdef HAVE_WS2TCPIP.H +#ifdef HAVE_WS2TCPIP_H #include <ws2tcpip.h> #endif #ifdef HAVE_NETINET_IN_H @@ -210,10 +210,10 @@ AC_CHECK_MEMBER(struct addrinfo.ai_flags, #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif -#ifdef HAVE_WINSOCK_H -#include <winsock.h> +#ifdef HAVE_WINSOCaK2_H +#include <winsock2.h> #endif -#ifdef HAVE_WS2TCPIP.H +#ifdef HAVE_WS2TCPIP_H #include <ws2tcpip.h> #endif #ifdef HAVE_NETINET_IN_H |