From 4f6e5fe3236e7809795fe78ecf51cf88743b1aba Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Sat, 24 Nov 2001 05:30:27 +0000 Subject: [PATCH] IPv6 is off by default -- it seems to break header files on too many systems. --- configure.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.in b/configure.in index f28eb9c2..71bb5c2f 100644 --- a/configure.in +++ b/configure.in @@ -97,15 +97,15 @@ AC_DEFINE(ss_len, __ss_len, [KAME hack]) CFLAGS="$CFLAGS" AC_ARG_ENABLE(ipv6, - AC_HELP_STRING([--disable-ipv6], [do not try to support IPv6])) -AC_MSG_CHECKING([whether IPv6 is explicitly disabled]) + AC_HELP_STRING([--enable-ipv6], [try to support IPv6])) +AC_MSG_CHECKING([whether IPv6 is requested]) if test "$xenable_ipv6" = xyes then AC_MSG_RESULT(yes) - ipv6=no + ipv6=yes else AC_MSG_RESULT(no) - ipv6=yes + ipv6=no fi ipv6type=unknown -- 2.34.1