--------------------- PatchSet 1253 Date: 2001/01/10 11:45:38 Author: rbcollins Branch: auth_digest Tag: (none) Log: consistent configure names for HELPERS Members: configure.in:1.1.1.3.10.17.2.5.2.9->1.1.1.3.10.17.2.5.2.10 src/auth/digest/helpers/Makefile.in:1.1.2.2->1.1.2.3 Index: squid/configure.in =================================================================== RCS file: /cvsroot/squid-sf//squid/configure.in,v retrieving revision 1.1.1.3.10.17.2.5.2.9 retrieving revision 1.1.1.3.10.17.2.5.2.10 diff -u -r1.1.1.3.10.17.2.5.2.9 -r1.1.1.3.10.17.2.5.2.10 --- squid/configure.in 10 Jan 2001 11:42:53 -0000 1.1.1.3.10.17.2.5.2.9 +++ squid/configure.in 10 Jan 2001 11:45:38 -0000 1.1.1.3.10.17.2.5.2.10 @@ -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.10.17.2.5.2.9 2001/01/10 11:42:53 rbcollins Exp $ +dnl $Id: configure.in,v 1.1.1.3.10.17.2.5.2.10 2001/01/10 11:45:38 rbcollins Exp $ dnl dnl dnl AC_INIT(src/main.c) AC_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.1.1.3.10.17.2.5.2.9 $)dnl +AC_REVISION($Revision: 1.1.1.3.10.17.2.5.2.10 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AC_CONFIG_AUX_DIR(cfgaux) @@ -788,7 +788,7 @@ AC_SUBST(NTLM_AUTH_HELPERS) dnl Select digest auth scheme helpers to build -AUTH_DIGEST_HELPERS= +DIGEST_AUTH_HELPERS= AC_ARG_ENABLE(digest-auth-helpers, [ --enable-digest-auth-helpers=\"list of helpers\" This option selects which digest scheme authentication @@ -799,20 +799,20 @@ yes) for helper in $srcdir/src/auth/digest/helpers/*; do if test -f $helper/Makefile.in; then - AUTH_DIGEST_HELPERS="$AUTH_DIGEST_HELPERS `basename $helper`" + DIGEST_AUTH_HELPERS="$DIGEST_AUTH_HELPERS `basename $helper`" fi done ;; no) ;; *) - AUTH_DIGEST_HELPERS="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`" + DIGEST_AUTH_HELPERS="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`" esac ]) -if test -n "$AUTH_DIGEST_HELPERS"; then - echo "Digest auth helpers built: $AUTH_DIGEST_HELPERS" +if test -n "$DIGEST_AUTH_HELPERS"; then + echo "Digest auth helpers built: $DIGEST_AUTH_HELPERS" fi -AC_SUBST(AUTH_DIGEST_HELPERS) +AC_SUBST(DIGEST_AUTH_HELPERS) dnl Disable "unlinkd" code AC_ARG_ENABLE(unlinkd, Index: squid/src/auth/digest/helpers/Makefile.in =================================================================== RCS file: /cvsroot/squid-sf//squid/src/auth/digest/helpers/Attic/Makefile.in,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -r1.1.2.2 -r1.1.2.3 --- squid/src/auth/digest/helpers/Makefile.in 10 Jan 2001 05:30:49 -0000 1.1.2.2 +++ squid/src/auth/digest/helpers/Makefile.in 10 Jan 2001 11:45:38 -0000 1.1.2.3 @@ -6,7 +6,7 @@ # The 'nop' is in the SUBDIRS list because some Unixes that can't # handle empty for lists. -SUBDIRS = @AUTH_DIGEST_HELPERS@ nop +SUBDIRS = @DIGEST_AUTH_HELPERS@ nop all: @for dir in $(SUBDIRS); do \