From: hno <> Date: Sat, 13 Apr 2002 22:29:06 +0000 (+0000) Subject: Enable CARP by default now when it no longer is a intrusive change X-Git-Tag: SQUID_3_0_PRE1~1086 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f7c8dc0255a73823ad7728d1724a91ef2acd3367;p=thirdparty%2Fsquid.git Enable CARP by default now when it no longer is a intrusive change to how Squid peers with other caches --- diff --git a/configure.in b/configure.in index 4b1f06d7b4..cdf9aaf301 100644 --- a/configure.in +++ b/configure.in @@ -3,7 +3,7 @@ dnl Configuration input file for Squid dnl dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9) dnl -dnl $Id: configure.in,v 1.264 2002/04/13 15:30:10 hno Exp $ +dnl $Id: configure.in,v 1.265 2002/04/13 16:29:06 hno Exp $ dnl dnl dnl @@ -11,7 +11,7 @@ AC_INIT(src/main.c) AC_CONFIG_AUX_DIR(cfgaux) AM_INIT_AUTOMAKE(squid, 2.6-DEVEL) AM_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.264 $)dnl +AC_REVISION($Revision: 1.265 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AM_MAINTAINER_MODE @@ -250,12 +250,14 @@ AC_ARG_ENABLE(xmalloc-statistics, ]) AC_ARG_ENABLE(carp, -[ --enable-carp Enable CARP support], -[ if test "$enableval" = "yes" ; then - echo "CARP support enabled" - AC_DEFINE(USE_CARP) +[ --disable-carp Disable CARP support], +[ if test "$enableval" = "no" ; then + echo "CARP disabled" + AC_DEFINE(USE_CARP, 0) + else + AC_DEFINE(USE_CARP, 1) fi -]) +]) AC_ARG_ENABLE(async-io, [ --enable-async-io[=N_THREADS]