From: Martin Pool Date: Sat, 24 Nov 2001 05:30:27 +0000 (+0000) Subject: IPv6 is off by default -- it seems to break header files on too many systems. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/4f6e5fe3236e7809795fe78ecf51cf88743b1aba IPv6 is off by default -- it seems to break header files on too many systems. --- 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