From: Mike Frysinger <vapier@xxxxxxxxxx> Added a --disable-ipv6 configuration flag to allow the disabling of the IPv6 support. Signed-off-by: Steve Dickson <steved@xxxxxxxxxx> --- configure.ac | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configure.ac b/configure.ac index 7ff80a4..a99c5d6 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,13 @@ if test x$gss = xtrue; then PKG_CHECK_MODULES(GSSGLUE, libgssglue, [], AC_MSG_ERROR([Unable to locate information required to use libgssglue.])) fi +AC_ARG_ENABLE(ipv6, + [AC_HELP_STRING([--disable-ipv6], [Disable IPv6 support @<:@default=no@:>@])], + [],[enable_ipv6=yes]) +AM_CONDITIONAL(INET6, test "x$disable_ipv6" != xno) +if test "x$enable_ipv6" != xno; then + AC_DEFINE(INET6, 1, [Define to 1 if IPv6 is available]) +fi AC_PROG_CC AM_CONFIG_HEADER(config.h) -- 1.7.11.7 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html