--------------------- PatchSet 2163 Date: 2001/04/30 19:24:42 Author: akroonmaa Branch: chunked_mempools Tag: (none) Log: add --disable-mempools to configure Members: acconfig.h:1.6.6.1->1.6.6.2 configure.in:1.19.6.1->1.19.6.2 Index: squid/acconfig.h =================================================================== RCS file: /cvsroot/squid-sf//squid/Attic/acconfig.h,v retrieving revision 1.6.6.1 retrieving revision 1.6.6.2 diff -u -r1.6.6.1 -r1.6.6.2 --- squid/acconfig.h 18 Apr 2001 18:20:21 -0000 1.6.6.1 +++ squid/acconfig.h 30 Apr 2001 19:24:42 -0000 1.6.6.2 @@ -23,7 +23,7 @@ #ifndef __CONFIGURE_H__ #define __CONFIGURE_H__ @TOP@ -/* $Id: acconfig.h,v 1.6.6.1 2001/04/18 18:20:21 akroonmaa Exp $ */ +/* $Id: acconfig.h,v 1.6.6.2 2001/04/30 19:24:42 akroonmaa Exp $ */ /********************************* * START OF CONFIGURABLE OPTIONS * @@ -54,6 +54,9 @@ /* Defines how many threads to use for async I/O */ #undef ASYNC_IO_THREADS +/* Define if you have problems with memPools and want to disable Pools */ +#undef DISABLE_POOLS + /* * If you want to use Squid's ICMP features (highly recommended!) then * define this. When USE_ICMP is defined, Squid will send ICMP pings Index: squid/configure.in =================================================================== RCS file: /cvsroot/squid-sf//squid/configure.in,v retrieving revision 1.19.6.1 retrieving revision 1.19.6.2 diff -u -r1.19.6.1 -r1.19.6.2 --- squid/configure.in 18 Apr 2001 18:20:21 -0000 1.19.6.1 +++ squid/configure.in 30 Apr 2001 19:24:42 -0000 1.19.6.2 @@ -3,13 +3,13 @@ dnl dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9) dnl -dnl $Id: configure.in,v 1.19.6.1 2001/04/18 18:20:21 akroonmaa Exp $ +dnl $Id: configure.in,v 1.19.6.2 2001/04/30 19:24:42 akroonmaa Exp $ dnl dnl dnl AC_INIT(src/main.c) AC_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.19.6.1 $)dnl +AC_REVISION($Revision: 1.19.6.2 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AC_CONFIG_AUX_DIR(cfgaux) @@ -869,6 +869,17 @@ fi ]) +dnl Disable "memPools" code +AC_ARG_ENABLE(mempools, +[ --disable-mempools Disable memPools], +[ if test "$enableval" = "no" ; then + echo "memPools disabled" + AC_DEFINE(DISABLE_POOLS, 1) + else + AC_DEFINE(DISABLE_POOLS, 0) + fi +]) + dnl Disable "unlinkd" code AC_ARG_ENABLE(unlinkd, [ --disable-unlinkd Do not use unlinkd],