From: hno <> Date: Thu, 11 Jan 2001 04:48:22 +0000 (+0000) Subject: ran autoconf X-Git-Tag: SQUID_3_0_PRE1~1654 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c4b3ff69d6931245751f1263369ead431d33048d;p=thirdparty%2Fsquid.git ran autoconf --- diff --git a/configure b/configure index 2206a65d44..67e0352a89 100755 --- a/configure +++ b/configure @@ -5588,33 +5588,23 @@ for repl in $REPL_POLICIES none; do fi done -AUTH_SCHEME_MAKEFILES="" -for auth in $AUTH_MODULES none; do - if test $auth != none; then - AUTH_SCHEME_MAKEFILES="$AUTH_SCHEME_MAKEFILES ./src/auth/$auth/Makefile" - fi -done - -BASIC_AUTH_MAKEFILES="" -for helper in $srcdir/src/auth/basic/helpers/*; do - if test -f $helper/Makefile.in; then - BASIC_AUTH_MAKEFILES="$BASIC_AUTH_MAKEFILES ./src/auth/basic/helpers/`basename $helper`/Makefile" - fi -done +AUTH_MAKEFILES="" +for auth in $srcdir/src/auth/* none; do + if test -f $auth/Makefile.in; then + scheme=`basename $auth` + AUTH_MAKEFILES="$AUTH_MAKEFILES ./src/auth/$scheme/Makefile" + if test -f $auth/helpers/Makefile.in; then + AUTH_MAKEFILES="$AUTH_MAKEFILES ./src/auth/$scheme/helpers/Makefile" + for helper in $auth/helpers/*; do + if test -f $helper/Makefile.in; then + AUTH_MAKEFILES="$AUTH_MAKEFILES ./src/auth/$scheme/helpers/`basename $helper`/Makefile" + fi + done + fi -NTLM_AUTH_MAKEFILES="" -for helper in $srcdir/src/auth/ntlm/helpers/*; do - if test -f $helper/Makefile.in; then - NTLM_AUTH_MAKEFILES="$NTLM_AUTH_MAKEFILES ./src/auth/ntlm/helpers/`basename $helper`/Makefile" - for submodule in $helper/*; do - if test -f $submodule/Makefile.in; then - NTLM_AUTH_MAKEFILES="$NTLM_AUTH_MAKEFILES ./src/auth/ntlm/helpers/`basename $helper`/`basename $submodule`/Makefile" - fi - done fi done - trap '' 1 2 15 cat > confcache <<\EOF # This file is a shell script that caches the results of configure @@ -5729,11 +5719,7 @@ trap 'rm -fr `echo "\ ./src/repl/Makefile \ $REPL_MAKEFILES \ ./src/auth/Makefile \ - $AUTH_SCHEME_MAKEFILES \ - ./src/auth/basic/helpers/Makefile \ - $BASIC_AUTH_MAKEFILES \ - ./src/auth/ntlm/helpers/Makefile \ - $NTLM_AUTH_MAKEFILES \ + $AUTH_MAKEFILES \ ./contrib/Makefile \ $SNMP_MAKEFILE \ ./icons/Makefile \ @@ -5886,11 +5872,7 @@ CONFIG_FILES=\${CONFIG_FILES-"\ ./src/repl/Makefile \ $REPL_MAKEFILES \ ./src/auth/Makefile \ - $AUTH_SCHEME_MAKEFILES \ - ./src/auth/basic/helpers/Makefile \ - $BASIC_AUTH_MAKEFILES \ - ./src/auth/ntlm/helpers/Makefile \ - $NTLM_AUTH_MAKEFILES \ + $AUTH_MAKEFILES \ ./contrib/Makefile \ $SNMP_MAKEFILE \ ./icons/Makefile \