summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2015-01-27 12:08:07 -0500
committerSteve Dickson <steved@redhat.com>2015-01-30 09:24:42 -0500
commit5c2a76cdd6659d838ed0c476a236524b12b14e8b (patch)
tree56f00d6ef5f56e138e7b110562b018fb04f52542
parent22b76cbf6dbdb14ec778545b1d79b8eb0db15695 (diff)
downloadnfs-utils-5c2a76cdd6659d838ed0c476a236524b12b14e8b.tar.gz
nfs-utils-5c2a76cdd6659d838ed0c476a236524b12b14e8b.tar.xz
nfs-utils-5c2a76cdd6659d838ed0c476a236524b12b14e8b.zip
ipv6: Enable IPv6 support by default.
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>
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
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