From: Harlan Stenn Date: Mon, 26 Jan 2004 03:14:09 +0000 (-0500) Subject: Don't use IPv6 on AIX4. X-Git-Tag: NTP_4_2_3~185^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e589b58ef0461e1a994d5a3f1795a7c0eeb19aca;p=thirdparty%2Fntp.git Don't use IPv6 on AIX4. bk: 40148601ijWrhncKJFAb60hVaz6DNg --- diff --git a/configure.in b/configure.in index c51ff41b7..767d388d4 100644 --- a/configure.in +++ b/configure.in @@ -3599,11 +3599,16 @@ fi AC_ARG_ENABLE(ipv6, AC_HELP_STRING([--enable-ipv6], [use IPv6?])) case "$enable_ipv6" in - yes|''|autodetect) - AC_DEFINE(WANT_IPV6, ,[ISC: Want IPv6?]) - ;; - no) - ;; + yes|''|autodetect) + case "$host" in + powerpc-ibm-aix4*) ;; + *) + AC_DEFINE(WANT_IPV6, ,[ISC: Want IPv6?]) + ;; + esac + ;; + no) + ;; esac AC_MSG_CHECKING(for IPv6 structures)