From: robertc <> Date: Sun, 16 Feb 2003 09:28:13 +0000 (+0000) Subject: fix AUTH_ON_ACCELERATION X-Git-Tag: SQUID_3_0_PRE1~333 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ea839d6fee9ede8db0403382f4e7c4daea6755c;p=thirdparty%2Fsquid.git fix AUTH_ON_ACCELERATION --- diff --git a/configure.in b/configure.in index 35c07d62d9..ab651107bb 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.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 ])