]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - configure.in
Restructured the directory structure to have all helpers in the new
[thirdparty/squid.git] / configure.in
index 829058f85f4284a2c53d44501c74fac4cdb5d3b3..248a7c3ba3602fe0ba88a438c84056541d24a586 100644 (file)
@@ -3,7 +3,7 @@ dnl  Configuration input file for Squid
 dnl
 dnl  Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9)
 dnl
-dnl  $Id: configure.in,v 1.273 2002/06/17 18:28:12 hno Exp $
+dnl  $Id: configure.in,v 1.274 2002/06/26 10:37:30 hno Exp $
 dnl
 dnl
 dnl
@@ -11,7 +11,7 @@ AC_INIT(src/main.c)
 AC_CONFIG_AUX_DIR(cfgaux)
 AM_INIT_AUTOMAKE(squid, 2.6-DEVEL)
 AM_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.273 $)dnl
+AC_REVISION($Revision: 1.274 $)dnl
 AC_PREFIX_DEFAULT(/usr/local/squid)
 AM_MAINTAINER_MODE
 
@@ -922,7 +922,7 @@ AC_ARG_ENABLE(auth-modules,
   sleep 5
   case "$enableval" in
   yes) 
-    for helper in $srcdir/src/auth/basic/helpers/*; do
+    for helper in $srcdir/helpers/basic_auth/*; do
        if test -f $helper/Makefile.in; then
            BASIC_AUTH_HELPERS="$BASIC_AUTH_HELPERS `basename $helper`"
        fi
@@ -939,11 +939,11 @@ AC_ARG_ENABLE(basic-auth-helpers,
                           This option selects which basic scheme proxy_auth
                           helpers to build and install as part of the normal 
                           build process. For a list of available
-                          helpers see the src/auth/basic/helpers directory.],
+                          helpers see the helpers/basic_auth directory.],
 [ case "$enableval" in
   yes) 
     BASIC_AUTH_HELPERS=""
-    for helper in $srcdir/src/auth/basic/helpers/*; do
+    for helper in $srcdir/helpers/basic_auth/*; do
        if test -f $helper/Makefile.in; then
            BASIC_AUTH_HELPERS="$BASIC_AUTH_HELPERS `basename $helper`"
        fi
@@ -966,11 +966,11 @@ AC_ARG_ENABLE(ntlm-auth-helpers,
 [  --enable-ntlm-auth-helpers=\"list of helpers\"
                           This option selects which proxy_auth ntlm helpers
                           to build and install as part of the normal build 
-                          process. For a list of available modules see
-                          the src/auth/ntlm/helpers directory.],
+                          process. For a list of available helpers see
+                          the helpers/ntlm_auth directory.],
 [ case "$enableval" in
   yes) 
-    for helper in $srcdir/src/auth/ntlm/helpers/*; do
+    for helper in $srcdir/helpers/ntlm_auth/*; do
        if test -f $helper/Makefile.in; then
            NTLM_AUTH_HELPERS="$NTLM_AUTH_HELPERS `basename $helper`"
        fi
@@ -993,11 +993,11 @@ AC_ARG_ENABLE(digest-auth-helpers,
 [  --enable-digest-auth-helpers=\"list of helpers\"
                           This option selects which digest scheme authentication
                           helpers to build and install as part of the normal build
-                          process. For a list of available modules see the
-                          src/auth/digest/helpers directory.],
+                          process. For a list of available helpers see the
+                          helpers/digest_auth directory.],
 [ case "$enableval" in
   yes)
-    for helper in $srcdir/src/auth/digest/helpers/*; do
+    for helper in $srcdir/helpers/digest_auth/*; do
         if test -f $helper/Makefile.in; then
             DIGEST_AUTH_HELPERS="$DIGEST_AUTH_HELPERS `basename $helper`"
         fi
@@ -2236,27 +2236,8 @@ AC_OUTPUT([\
        src/repl/Makefile \
        src/auth/Makefile \
        src/auth/basic/Makefile \
-       src/auth/basic/helpers/Makefile \
-       src/auth/basic/helpers/LDAP/Makefile \
-       src/auth/basic/helpers/MSNT/Makefile \
-       src/auth/basic/helpers/NCSA/Makefile \
-       src/auth/basic/helpers/PAM/Makefile \
-       src/auth/basic/helpers/SMB/Makefile \
-       src/auth/basic/helpers/YP/Makefile \
-       src/auth/basic/helpers/getpwnam/Makefile \
-       src/auth/basic/helpers/multi-domain-NTLM/Makefile \
-       src/auth/basic/helpers/SASL/Makefile \
-       src/auth/basic/helpers/winbind/Makefile \
        src/auth/digest/Makefile \
-       src/auth/digest/helpers/Makefile \
-       src/auth/digest/helpers/password/Makefile \
        src/auth/ntlm/Makefile \
-       src/auth/ntlm/helpers/Makefile \
-       src/auth/ntlm/helpers/fakeauth/Makefile \
-       src/auth/ntlm/helpers/no_check/Makefile \
-       src/auth/ntlm/helpers/SMB/Makefile \
-       src/auth/ntlm/helpers/SMB/smbval/Makefile \
-       src/auth/ntlm/helpers/winbind/Makefile \
        contrib/Makefile \
        snmplib/Makefile \
        icons/Makefile \
@@ -2269,4 +2250,24 @@ AC_OUTPUT([\
        src/repl/heap/Makefile \
        src/repl/lru/Makefile \
        doc/Makefile \
+       helpers/Makefile \
+       helpers/basic_auth/Makefile \
+       helpers/basic_auth/LDAP/Makefile \
+       helpers/basic_auth/MSNT/Makefile \
+       helpers/basic_auth/NCSA/Makefile \
+       helpers/basic_auth/PAM/Makefile \
+       helpers/basic_auth/SMB/Makefile \
+       helpers/basic_auth/YP/Makefile \
+       helpers/basic_auth/getpwnam/Makefile \
+       helpers/basic_auth/multi-domain-NTLM/Makefile \
+       helpers/basic_auth/SASL/Makefile \
+       helpers/basic_auth/winbind/Makefile \
+       helpers/digest_auth/Makefile \
+       helpers/digest_auth/password/Makefile \
+       helpers/ntlm_auth/Makefile \
+       helpers/ntlm_auth/fakeauth/Makefile \
+       helpers/ntlm_auth/no_check/Makefile \
+       helpers/ntlm_auth/SMB/Makefile \
+       helpers/ntlm_auth/SMB/smbval/Makefile \
+       helpers/ntlm_auth/winbind/Makefile \
 ])