diff options
author | Yang Tse <yangsita@gmail.com> | 2005-12-19 23:32:52 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2005-12-19 23:32:52 +0000 |
commit | f44816850136da6495ff7516e1d0875fdaf1d71a (patch) | |
tree | 98d2cd3a440d6a1e68b08899c8fd5399823438fb /ares | |
parent | 80a8fb98db909a4403a641e6bb0049c1c778f416 (diff) |
Ooops
Diffstat (limited to 'ares')
-rw-r--r-- | ares/acinclude.m4 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ares/acinclude.m4 b/ares/acinclude.m4 index df89d8b43..a6cd87a9a 100644 --- a/ares/acinclude.m4 +++ b/ares/acinclude.m4 @@ -231,6 +231,10 @@ AC_DEFUN([CURL_FUNC_GETNAMEINFO_ARGTYPES], [ #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif +#if defined(__MINGW32__) && ( (!defined(_WIN32_WINNT)) || (_WIN32_WINNT < 0x0501) ) +#undef _WIN32_WINNT +#define _WIN32_WINNT 0x0501 +#endif #include <windows.h> #ifdef HAVE_WINSOCK2_H #include <winsock2.h> @@ -501,6 +505,9 @@ AC_DEFUN([TYPE_IN_ADDR_T], #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif +#ifdef HAVE_ARPA_INET_H +#include <arpa/inet.h> +#endif #endif ],[ $t data = inet_addr ("1.2.3.4"); @@ -541,6 +548,10 @@ AC_DEFUN([TYPE_IN_ADDR_T], #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif +#ifdef HAVE_ARPA_INET_H +#include <arpa/inet.h> +#endif + #endif ]) |