]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Enable CARP by default now when it no longer is a intrusive change
authorhno <>
Sat, 13 Apr 2002 22:29:06 +0000 (22:29 +0000)
committerhno <>
Sat, 13 Apr 2002 22:29:06 +0000 (22:29 +0000)
to how Squid peers with other caches

configure.in

index 4b1f06d7b4734afff8b31702a17d1a167da33861..cdf9aaf301870ae30944c7c5a77add4758b44176 100644 (file)
@@ -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]