dnl
dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9)
dnl
-dnl $Id: configure.in,v 1.392 2005/11/21 23:17:21 wessels Exp $
+dnl $Id: configure.in,v 1.393 2005/12/29 02:15:21 hno Exp $
dnl
dnl
dnl
AC_CONFIG_AUX_DIR(cfgaux)
AM_INIT_AUTOMAKE(squid, 3.0-PRE3-CVS)
AM_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.392 $)dnl
+AC_REVISION($Revision: 1.393 $)dnl
AC_PREFIX_DEFAULT(/usr/local/squid)
AM_MAINTAINER_MODE
yes)
for dir in $srcdir/helpers/basic_auth/*; do
helper="`basename $dir`"
- if test -d "$dir" && test "$helper" != CVS; then
+ if test -f $dir/config.test && sh $dir/config.test "$@"; then
BASIC_AUTH_HELPERS="$BASIC_AUTH_HELPERS $helper"
fi
done
yes)
for dir in $srcdir/helpers/ntlm_auth/*; do
helper="`basename $dir`"
- if test -d "$dir" && test "$helper" != CVS; then
+ if test -f $dir/config.test && sh $dir/config.test "$@"; then
NTLM_AUTH_HELPERS="$NTLM_AUTH_HELPERS $helper"
fi
done
yes)
for dir in $srcdir/helpers/negotiate_auth/*; do
helper="`basename $dir`"
- if test -d "$dir" && test "$helper" != CVS; then
+ if test -f $dir/config.test && sh $dir/config.test "$@"; then
NEGOTIATE_AUTH_HELPERS="$NEGOTIATE_AUTH_HELPERS $helper"
fi
done
yes)
for dir in $srcdir/helpers/digest_auth/*; do
helper="`basename $dir`"
- if test -d "$dir" && test "$helper" != CVS; then
+ if test -f $dir/config.test && sh $dir/config.test "$@"; then
DIGEST_AUTH_HELPERS="$DIGEST_AUTH_HELPERS $helper"
fi
done
yes)
for dir in $srcdir/helpers/external_acl/*; do
helper="`basename $dir`"
- if test -d "$dir" && test "$helper" != CVS; then
+ if test -f $dir/config.test && sh $dir/config.test "$@"; then
EXTERNAL_ACL_HELPERS="$EXTERNAL_ACL_HELPERS $helper"
fi
done