diff mbox

[1/4] ipv6: Enable IPv6 support by default.

Message ID 1422454042-12840-2-git-send-email-steved@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Steve Dickson Jan. 28, 2015, 2:07 p.m. UTC
Enable IPv6 support to be on by default. Use
the --disable-ipv6 flag to disable the support

Signed-off-by: Steve Dickson <steved@redhat.com>
---
 configure.ac | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/configure.ac b/configure.ac
index 6740fda..72055be 100644
--- a/configure.ac
+++ b/configure.ac
@@ -171,10 +171,10 @@  AC_ARG_ENABLE(tirpc,
 	enable_tirpc=$enableval,
 	enable_tirpc='')
 AC_ARG_ENABLE(ipv6,
-	[AC_HELP_STRING([--enable-ipv6],
-                        [enable support for IPv6 @<:@default=no@:>@])],
+	[AC_HELP_STRING([--disable-ipv6],
+                        [disable support for IPv6 @<:@default=no@:>@])],
 	enable_ipv6=$enableval,
-	enable_ipv6=no)
+	enable_ipv6=yes)
 	if test "$enable_ipv6" = yes; then
 		AC_DEFINE(IPV6_SUPPORTED, 1, [Define this if you want IPv6 support compiled in])
 	else