From cfd002602aa14af24098198b21d8407549da2e1d Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 2 Feb 2006 01:06:20 +0000 Subject: [PATCH] Don't use getaddrinfo() etc or try to support IPv6 on Windows, as they are 2006-02-02 Tor Lillqvist * configure.in: Don't use getaddrinfo() etc or try to support IPv6 on Windows, as they are present by default on XP only. We do want to support Windows 2000, too. --- ChangeLog | 6 ++++++ configure.in | 12 +++++++----- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index a594314..4791b18 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-02-02 Tor Lillqvist + + * configure.in: Don't use getaddrinfo() etc or try to support IPv6 + on Windows, as they are present by default on XP only. We do want + to support Windows 2000, too. + 2005-12-21 Dan Winship * libsoup/soup-date.c (soup_date_iso8601_parse): fix two bugs in diff --git a/configure.in b/configure.in index 3db8069..b57a726 100644 --- a/configure.in +++ b/configure.in @@ -87,11 +87,13 @@ AC_MSG_CHECKING([for Win32]) case "$host" in *-*-mingw*) os_win32=yes - AC_CACHE_VAL(ac_cv_func_getaddrinfo, [ac_cv_func_getaddrinfo=yes]) - AC_CACHE_VAL(ac_cv_func_getnameinfo, [ac_cv_func_getnameinfo=yes]) - AC_CACHE_VAL(ac_cv_func_inet_pton, [ac_cv_func_inet_pton=yes]) - AC_CACHE_VAL(ac_cv_func_inet_ntop, [ac_cv_func_inet_ntop=yes]) - AC_CACHE_VAL(soup_cv_ipv6, [soup_cv_ipv6=yes]) + # Don't do this yet, as we want to support Windows 2000 which + # doesn't have these. + # AC_CACHE_VAL(ac_cv_func_getaddrinfo, [ac_cv_func_getaddrinfo=yes]) + # AC_CACHE_VAL(ac_cv_func_getnameinfo, [ac_cv_func_getnameinfo=yes]) + # AC_CACHE_VAL(ac_cv_func_inet_pton, [ac_cv_func_inet_pton=yes]) + # AC_CACHE_VAL(ac_cv_func_inet_ntop, [ac_cv_func_inet_ntop=yes]) + # AC_CACHE_VAL(soup_cv_ipv6, [soup_cv_ipv6=yes]) ;; *) os_win32=no -- 2.7.4