--------------------- PatchSet 397 Date: 2000/07/01 14:25:43 Author: hno Branch: hno-devel Tag: (none) Log: Changed fs,repl,auth Makefiles to be dynamically listed Members: configure.in:1.1.1.3.6.7.2.13->1.1.1.3.6.7.2.14 Index: squid/configure.in =================================================================== RCS file: /cvsroot/squid-sf//squid/configure.in,v retrieving revision 1.1.1.3.6.7.2.13 retrieving revision 1.1.1.3.6.7.2.14 diff -u -r1.1.1.3.6.7.2.13 -r1.1.1.3.6.7.2.14 --- squid/configure.in 1 Jul 2000 14:12:50 -0000 1.1.1.3.6.7.2.13 +++ squid/configure.in 1 Jul 2000 14:25:43 -0000 1.1.1.3.6.7.2.14 @@ -3,13 +3,13 @@ dnl dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9) dnl -dnl $Id: configure.in,v 1.1.1.3.6.7.2.13 2000/07/01 14:12:50 hno Exp $ +dnl $Id: configure.in,v 1.1.1.3.6.7.2.14 2000/07/01 14:25:43 hno Exp $ dnl dnl dnl AC_INIT(src/main.c) AC_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.1.1.3.6.7.2.13 $)dnl +AC_REVISION($Revision: 1.1.1.3.6.7.2.14 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AC_CONFIG_AUX_DIR(cfgaux) @@ -1650,14 +1650,20 @@ FS_MAKEFILES="" for fs in $STORE_MODULES none; do - if test $fs -ne none; then - FS_MAKEFILES="$FS_MAKEFILES ./src/fs/$fs/Makefile + if test $fs != none; then + FS_MAKEFILES="$FS_MAKEFILES ./src/fs/$fs/Makefile" fi done REPL_MAKEFILES="" -for repl in $REPL_MODULES none; do - if test $repl -ne none; then - REPL_MAKEFILES="$REPL_MAKEFILES ./src/repl/$repl/Makefile +for repl in $REPL_POLICIES none; do + if test $repl != none; then + REPL_MAKEFILES="$REPL_MAKEFILES ./src/repl/$repl/Makefile" + fi +done +AUTH_MAKEFILES="" +for auth in $AUTH_MODULES none; do + if test $auth != none; then + AUTH_MAKEFILES="$AUTH_MAKEFILES ./auth_modules/$auth/Makefile" fi done @@ -1679,10 +1685,5 @@ ./icons/Makefile \ ./errors/Makefile \ ./auth_modules/Makefile \ - ./auth_modules/NCSA/Makefile \ - ./auth_modules/PAM/Makefile \ - ./auth_modules/SMB/Makefile \ - ./auth_modules/MSNT/Makefile \ - ./auth_modules/getpwnam/Makefile \ - ./auth_modules/LDAP/Makefile \ + $AUTH_MAKEFILES \ )