]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
fix AUTH_ON_ACCELERATION
authorrobertc <>
Sun, 16 Feb 2003 09:28:13 +0000 (09:28 +0000)
committerrobertc <>
Sun, 16 Feb 2003 09:28:13 +0000 (09:28 +0000)
configure.in

index 35c07d62d9ff9ed1c6d74c0996c917fbbd4e99fd..ab651107bba2dcf276c086cb97731b4e471ac01a 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.323 2003/02/15 00:22:56 hno Exp $
+dnl  $Id: configure.in,v 1.324 2003/02/16 02:28:13 robertc Exp $
 dnl
 dnl
 dnl
@@ -13,7 +13,7 @@ AC_CONFIG_SRCDIR([src/main.cc])
 AC_CONFIG_AUX_DIR(cfgaux)
 AM_INIT_AUTOMAKE(squid, 3.0-DEVEL)
 AM_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.323 $)dnl
+AC_REVISION($Revision: 1.324 $)dnl
 AC_PREFIX_DEFAULT(/usr/local/squid)
 AM_MAINTAINER_MODE
 
@@ -982,7 +982,9 @@ AC_ARG_ENABLE(auth-on-acceleration,
                           Enable authentication in accelerators],
 [ if test "$enableval" = "yes" ; then
     echo "AUTH_ON_ACCELERATION enabled"
-    AC_DEFINE(AUTH_ON_ACCELERATION, [Enable authentication support in accelerators])
+    AC_DEFINE(AUTH_ON_ACCELERATION, 1, [Enable authentication support in accelerators])
+  else
+    AC_DEFINE(AUTH_ON_ACCELERATION, 0, [Enable authentication support in accelerators])
   fi
 ])