Commit 17d5a07e authored by Martin Pool's avatar Martin Pool

Put back the --disable-ipv6 option. This should only be needed if

your platform seems to support ipv6, but actually it breaks.  This
seems to be the case for "powerpc-apple-darwin1.4".
parent 3966b9c6
......@@ -94,6 +94,11 @@ ipv6type=unknown
ipv6lib=none
ipv6trylibc=yes
AC_ARG_ENABLE(ipv6,
AC_HELP_STRING([--disable-ipv6], [don't even try to use IPv6]))
if test "x$enable_ipv6" != xno
then
AC_MSG_CHECKING([ipv6 stack type])
for i in inria kame linux-glibc linux-inet6 toshiba v6d zeta; do
case $i in
......@@ -179,7 +184,8 @@ yes
done
AC_MSG_RESULT($ipv6type)
AC_SEARCH_LIBS(getaddrinfo, inet6)
AC_SEARCH_LIBS(getaddrinfo, inet6)
fi
AC_C_BIGENDIAN
AC_HEADER_DIRENT
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment