--------------------- PatchSet 3990 Date: 2007/01/07 22:07:45 Author: amosjeffries Branch: squid3-ipv6 Tag: (none) Log: Initial plumbing for Dual-Stack Support. Members: configure.in:1.63.2.8->1.63.2.9 Index: squid3/configure.in =================================================================== RCS file: /cvsroot/squid-sf//squid3/configure.in,v retrieving revision 1.63.2.8 retrieving revision 1.63.2.9 diff -u -r1.63.2.8 -r1.63.2.9 --- squid3/configure.in 5 Jan 2007 16:56:36 -0000 1.63.2.8 +++ squid3/configure.in 7 Jan 2007 22:07:45 -0000 1.63.2.9 @@ -1,7 +1,7 @@ dnl Configuration input file for Squid dnl -dnl $Id: configure.in,v 1.63.2.8 2007/01/05 16:56:36 hno Exp $ +dnl $Id: configure.in,v 1.63.2.9 2007/01/07 22:07:45 amosjeffries Exp $ dnl dnl dnl @@ -11,7 +11,7 @@ AC_CONFIG_AUX_DIR(cfgaux) AC_CONFIG_SRCDIR([src/main.cc]) AM_INIT_AUTOMAKE([tar-ustar]) -AC_REVISION($Revision: 1.63.2.8 $)dnl +AC_REVISION($Revision: 1.63.2.9 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AM_MAINTAINER_MODE @@ -1806,7 +1806,7 @@ dnl Enable IPv6 support dnl For the time beeing, let's try a modest IPv6-only port dnl IPv6-IPv4 (protocol independent) may be harder. -AC_MSG_CHECKING([whether to enable ipv6]) +AC_MSG_CHECKING([whether to enable IPv6]) AC_ARG_ENABLE(ipv6, [ --enable-ipv6 Enable ipv6 support @@ -1831,6 +1831,15 @@ ) if test $ac_cv_const_AF_INET6 = "yes"; then AC_DEFINE(INET6,1,[Enable support for IPv6 ]) + case "$host_os" in + mingw|mingw32) + dnl Windows Still has a Split-Stack for IPv6 At Best. + ;; + *) + echo "IPv6 Support is now available with Limited Dual-Stack Support" + echo " Contact the Developers to have it enabled for your OS." + ;; + esac else echo echo "Hmm... Your system seems not to support IPv6 ... disable IPv6 support ! "