From 17d5a07ec2f60e4ea58f7f9f0a0bebb43f8ad857 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 28 Nov 2001 06:52:04 +0000 Subject: [PATCH] Put back the --disable-ipv6 option. This should only be needed if your platform seems to support ipv6, but actually it breaks. This seems to be the case for "powerpc-apple-darwin1.4". --- configure.in | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index a701a004..85ecac47 100644 --- a/configure.in +++ b/configure.in @@ -94,6 +94,11 @@ ipv6type=unknown ipv6lib=none ipv6trylibc=yes +AC_ARG_ENABLE(ipv6, + AC_HELP_STRING([--disable-ipv6], [don't even try to use IPv6])) + +if test "x$enable_ipv6" != xno +then AC_MSG_CHECKING([ipv6 stack type]) for i in inria kame linux-glibc linux-inet6 toshiba v6d zeta; do case $i in @@ -179,7 +184,8 @@ yes done AC_MSG_RESULT($ipv6type) -AC_SEARCH_LIBS(getaddrinfo, inet6) + AC_SEARCH_LIBS(getaddrinfo, inet6) +fi AC_C_BIGENDIAN AC_HEADER_DIRENT -- 2.34.1