--------------------- PatchSet 3359 Date: 2001/11/22 02:40:27 Author: hno Branch: eventio Tag: (none) Log: Disable ident lookups by default. ident is not yet ported to ncomm Members: configure.in:1.17.8.7->1.17.8.8 Index: squid/configure.in =================================================================== RCS file: /cvsroot/squid-sf//squid/configure.in,v retrieving revision 1.17.8.7 retrieving revision 1.17.8.8 diff -u -r1.17.8.7 -r1.17.8.8 --- squid/configure.in 22 Nov 2001 02:18:56 -0000 1.17.8.7 +++ squid/configure.in 22 Nov 2001 02:40:27 -0000 1.17.8.8 @@ -3,7 +3,7 @@ dnl dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9) dnl -dnl $Id: configure.in,v 1.17.8.7 2001/11/22 02:18:56 hno Exp $ +dnl $Id: configure.in,v 1.17.8.8 2001/11/22 02:40:27 hno Exp $ dnl dnl dnl @@ -11,7 +11,7 @@ AC_CONFIG_AUX_DIR(cfgaux) AM_INIT_AUTOMAKE(Squid, 2.5-DEVEL) AM_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.17.8.7 $)dnl +AC_REVISION($Revision: 1.17.8.8 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AM_MAINTAINER_MODE @@ -719,16 +719,20 @@ ]) AC_ARG_ENABLE(ident-lookups, -[ --disable-ident-lookups - This allows you to remove code that performs +[ --enable-ident-lookups + This allows you to reenable code that performs Ident (RFC 931) lookups.], -[ if test "$enableval" = "no" ; then - echo "Disabling Ident Lookups" - AC_DEFINE(USE_IDENT, 0) +[ if test "$enableval" = "yes" ; then + echo "Enabling Ident Lookups" + use_ident="yes" else - AC_DEFINE(USE_IDENT, 1) + echo "Disabling Ident Lookups" + use_ident= fi ]) +if test "$use_dnsserver" = "yes"; then + AC_DEFINE(USE_IDENT) +fi AM_CONDITIONAL(USE_DNSSERVER, false) use_dnsserver=