]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Restructured the directory structure to have all helpers in the new
authorhno <>
Wed, 26 Jun 2002 16:37:30 +0000 (16:37 +0000)
committerhno <>
Wed, 26 Jun 2002 16:37:30 +0000 (16:37 +0000)
helpers directory.

helpers/basic_auth Basic auth helpers
helpers/ntlm_auth NTLM auth helpers
helpers/digest_auth Digest auth helpers

31 files changed:
Makefile.am
Makefile.in
configure
configure.in
helpers/Makefile.am [new file with mode: 0644]
helpers/Makefile.in [new file with mode: 0644]
helpers/basic_auth/LDAP/Makefile.in
helpers/basic_auth/MSNT/Makefile.in
helpers/basic_auth/Makefile.in
helpers/basic_auth/NCSA/Makefile.in
helpers/basic_auth/PAM/Makefile.in
helpers/basic_auth/SASL/Makefile.in
helpers/basic_auth/SMB/Makefile.in
helpers/basic_auth/YP/Makefile.in
helpers/basic_auth/getpwnam/Makefile.in
helpers/basic_auth/multi-domain-NTLM/Makefile.in
helpers/basic_auth/winbind/Makefile.in
helpers/digest_auth/Makefile.in
helpers/digest_auth/password/Makefile.in
helpers/ntlm_auth/Makefile.in
helpers/ntlm_auth/SMB/Makefile.in
helpers/ntlm_auth/SMB/smbval/Makefile.in
helpers/ntlm_auth/fakeauth/Makefile.in
helpers/ntlm_auth/no_check/Makefile.in
helpers/ntlm_auth/winbind/Makefile.in
src/auth/basic/Makefile.am
src/auth/basic/Makefile.in
src/auth/digest/Makefile.am
src/auth/digest/Makefile.in
src/auth/ntlm/Makefile.am
src/auth/ntlm/Makefile.in

index a0dcb6dbf42a3f53342c556302c3f064757b90de..03834af29b1079c13bd74bdb20b9a8c43682b857 100644 (file)
@@ -1,11 +1,11 @@
 ## Process this file with automake to produce Makefile.in
 #
-# $Id: Makefile.am,v 1.9 2002/06/23 12:57:07 hno Exp $
+# $Id: Makefile.am,v 1.10 2002/06/26 10:37:30 hno Exp $
 #
 
 AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects 1.5
-DIST_SUBDIRS   = lib snmplib scripts src icons errors contrib doc
-SUBDIRS                = lib @makesnmplib@ scripts src icons errors doc
+DIST_SUBDIRS   = lib snmplib scripts src icons errors contrib doc helpers
+SUBDIRS                = lib @makesnmplib@ scripts src icons errors doc helpers
 
 DISTCLEANFILES = include/stamp-h include/stamp-h[0-9]*
 
index 7b141bad4690a008b3aaf3817281985b8b6ff9b5..67e8466a8683ab833114eff14a987222cafc15c8 100644 (file)
@@ -14,7 +14,7 @@
 @SET_MAKE@
 
 #
-# $Id: Makefile.in,v 1.17 2002/06/23 14:53:34 hno Exp $
+# $Id: Makefile.in,v 1.18 2002/06/26 10:37:30 hno Exp $
 #
 
 SHELL = @SHELL@
@@ -118,8 +118,8 @@ install_sh = @install_sh@
 makesnmplib = @makesnmplib@
 
 AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects 1.5
-DIST_SUBDIRS = lib snmplib scripts src icons errors contrib doc
-SUBDIRS = lib @makesnmplib@ scripts src icons errors doc
+DIST_SUBDIRS = lib snmplib scripts src icons errors contrib doc helpers
+SUBDIRS = lib @makesnmplib@ scripts src icons errors doc helpers
 
 DISTCLEANFILES = include/stamp-h include/stamp-h[0-9]*
 
index 3b6c8c0ae9bc72fda96e9794fd483f797209311f..f11e58958cc77d5a5af893cd520851e2924b6a57 100755 (executable)
--- a/configure
+++ b/configure
@@ -179,19 +179,19 @@ ac_help="$ac_help
                           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."
 ac_help="$ac_help
   --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."
 ac_help="$ac_help
   --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."
 ac_help="$ac_help
   --enable-ntlm-fail-open Enable NTLM fail open, where a helper that fails one of the
                           Authentication steps can allow squid to still authenticate
@@ -1027,7 +1027,7 @@ INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
 
   
 
-# From configure.in Revision: 1.273 
+# From configure.in Revision
 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
 echo "configure:1033: checking whether to enable maintainer-specific portions of Makefiles" >&5
     # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
@@ -3031,7 +3031,7 @@ if test "${enable_auth_modules+set}" = set; then
   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
@@ -3051,7 +3051,7 @@ if test "${enable_basic_auth_helpers+set}" = set; then
    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
@@ -3076,7 +3076,7 @@ if test "${enable_ntlm_auth_helpers+set}" = set; then
   enableval="$enable_ntlm_auth_helpers"
    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
@@ -3101,7 +3101,7 @@ if test "${enable_digest_auth_helpers+set}" = set; then
   enableval="$enable_digest_auth_helpers"
    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
@@ -8743,27 +8743,8 @@ trap 'rm -fr `echo "\
        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 \
@@ -8776,6 +8757,26 @@ trap 'rm -fr `echo "\
        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 \
  include/autoconf.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
 EOF
 cat >> $CONFIG_STATUS <<EOF
@@ -8957,27 +8958,8 @@ CONFIG_FILES=\${CONFIG_FILES-"\
        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 \
@@ -8990,6 +8972,26 @@ CONFIG_FILES=\${CONFIG_FILES-"\
        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 \
 "}
 EOF
 cat >> $CONFIG_STATUS <<\EOF
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 \
 ])
diff --git a/helpers/Makefile.am b/helpers/Makefile.am
new file mode 100644 (file)
index 0000000..f119960
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = basic_auth ntlm_auth digest_auth
diff --git a/helpers/Makefile.in b/helpers/Makefile.in
new file mode 100644 (file)
index 0000000..afb3419
--- /dev/null
@@ -0,0 +1,351 @@
+# Makefile.in generated automatically by automake 1.5 from Makefile.am.
+
+# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+includedir = @includedir@
+oldincludedir = /usr/include
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ..
+
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = @program_transform_name@
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias = @host_alias@
+host_triplet = @host@
+AMTAR = @AMTAR@
+AR = @AR@
+AR_R = @AR_R@
+AUTH_LIBS = @AUTH_LIBS@
+AUTH_MODULES = @AUTH_MODULES@
+AUTH_OBJS = @AUTH_OBJS@
+AWK = @AWK@
+BASIC_AUTH_HELPERS = @BASIC_AUTH_HELPERS@
+CC = @CC@
+CPP = @CPP@
+CRYPTLIB = @CRYPTLIB@
+DEPDIR = @DEPDIR@
+DIGEST_AUTH_HELPERS = @DIGEST_AUTH_HELPERS@
+ERR_DEFAULT_LANGUAGE = @ERR_DEFAULT_LANGUAGE@
+ERR_LANGUAGES = @ERR_LANGUAGES@
+EXEEXT = @EXEEXT@
+FALSE = @FALSE@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+LIBDLMALLOC = @LIBDLMALLOC@
+LIBREGEX = @LIBREGEX@
+LIB_MALLOC = @LIB_MALLOC@
+LN = @LN@
+LN_S = @LN_S@
+MAINT = @MAINT@
+MKDIR = @MKDIR@
+MV = @MV@
+NTLM_AUTH_HELPERS = @NTLM_AUTH_HELPERS@
+OBJEXT = @OBJEXT@
+OPT_DISKD_EXE = @OPT_DISKD_EXE@
+OPT_DNSSERVER_EXE = @OPT_DNSSERVER_EXE@
+OPT_PINGER = @OPT_PINGER@
+OPT_PINGER_EXE = @OPT_PINGER_EXE@
+PACKAGE = @PACKAGE@
+PERL = @PERL@
+RANLIB = @RANLIB@
+REGEXLIB = @REGEXLIB@
+REPL_LIBS = @REPL_LIBS@
+REPL_OBJS = @REPL_OBJS@
+REPL_POLICIES = @REPL_POLICIES@
+RM = @RM@
+SH = @SH@
+SNMPLIB = @SNMPLIB@
+SSLLIB = @SSLLIB@
+STORE_LIBS = @STORE_LIBS@
+STORE_MODULES = @STORE_MODULES@
+STORE_MODULE_SUBDIRS = @STORE_MODULE_SUBDIRS@
+STORE_OBJS = @STORE_OBJS@
+TRUE = @TRUE@
+VERSION = @VERSION@
+XTRA_LIBS = @XTRA_LIBS@
+XTRA_OBJS = @XTRA_OBJS@
+am__include = @am__include@
+am__quote = @am__quote@
+install_sh = @install_sh@
+makesnmplib = @makesnmplib@
+
+SUBDIRS = basic_auth ntlm_auth digest_auth
+subdir = helpers
+mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
+CONFIG_HEADER = $(top_builddir)/include/autoconf.h
+CONFIG_CLEAN_FILES =
+DIST_SOURCES =
+
+RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
+       uninstall-info-recursive all-recursive install-data-recursive \
+       install-exec-recursive installdirs-recursive install-recursive \
+       uninstall-recursive check-recursive installcheck-recursive
+DIST_COMMON = Makefile.am Makefile.in
+DIST_SUBDIRS = $(SUBDIRS)
+all: all-recursive
+
+.SUFFIXES:
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
+       cd $(top_srcdir) && \
+         $(AUTOMAKE) --foreign  helpers/Makefile
+Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+       cd $(top_builddir) && \
+         CONFIG_HEADERS= CONFIG_LINKS= \
+         CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status
+uninstall-info-am:
+
+# This directory's subdirectories are mostly independent; you can cd
+# into them and run `make' without going through this Makefile.
+# To change the values of `make' variables: instead of editing Makefiles,
+# (1) if the variable is set in `config.status', edit `config.status'
+#     (which will cause the Makefiles to be regenerated when you run `make');
+# (2) otherwise, pass the desired values on the `make' command line.
+$(RECURSIVE_TARGETS):
+       @set fnord $(MAKEFLAGS); amf=$$2; \
+       dot_seen=no; \
+       target=`echo $@ | sed s/-recursive//`; \
+       list='$(SUBDIRS)'; for subdir in $$list; do \
+         echo "Making $$target in $$subdir"; \
+         if test "$$subdir" = "."; then \
+           dot_seen=yes; \
+           local_target="$$target-am"; \
+         else \
+           local_target="$$target"; \
+         fi; \
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+          || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+       done; \
+       if test "$$dot_seen" = "no"; then \
+         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
+       fi; test -z "$$fail"
+
+mostlyclean-recursive clean-recursive distclean-recursive \
+maintainer-clean-recursive:
+       @set fnord $(MAKEFLAGS); amf=$$2; \
+       dot_seen=no; \
+       case "$@" in \
+         distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+         *) list='$(SUBDIRS)' ;; \
+       esac; \
+       rev=''; for subdir in $$list; do \
+         if test "$$subdir" = "."; then :; else \
+           rev="$$subdir $$rev"; \
+         fi; \
+       done; \
+       rev="$$rev ."; \
+       target=`echo $@ | sed s/-recursive//`; \
+       for subdir in $$rev; do \
+         echo "Making $$target in $$subdir"; \
+         if test "$$subdir" = "."; then \
+           local_target="$$target-am"; \
+         else \
+           local_target="$$target"; \
+         fi; \
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+          || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+       done && test -z "$$fail"
+tags-recursive:
+       list='$(SUBDIRS)'; for subdir in $$list; do \
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+       done
+
+tags: TAGS
+
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+       list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \
+       unique=`for i in $$list; do \
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+         done | \
+         $(AWK) '    { files[$$0] = 1; } \
+              END { for (i in files) print i; }'`; \
+       mkid -fID $$unique $(LISP)
+
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+               $(TAGS_FILES) $(LISP)
+       tags=; \
+       here=`pwd`; \
+       list='$(SUBDIRS)'; for subdir in $$list; do \
+         if test "$$subdir" = .; then :; else \
+           test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
+         fi; \
+       done; \
+       list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \
+       unique=`for i in $$list; do \
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+         done | \
+         $(AWK) '    { files[$$0] = 1; } \
+              END { for (i in files) print i; }'`; \
+       test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
+         || etags $(ETAGS_ARGS) $$tags  $$unique $(LISP)
+
+GTAGS:
+       here=`CDPATH=: && cd $(top_builddir) && pwd` \
+         && cd $(top_srcdir) \
+         && gtags -i $(GTAGS_ARGS) $$here
+
+distclean-tags:
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
+
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+
+top_distdir = ..
+distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+
+distdir: $(DISTFILES)
+       @for file in $(DISTFILES); do \
+         if test -f $$file; then d=.; else d=$(srcdir); fi; \
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+           $(mkinstalldirs) "$(distdir)/$$dir"; \
+         fi; \
+         if test -d $$d/$$file; then \
+           cp -pR $$d/$$file $(distdir) \
+           || exit 1; \
+         else \
+           test -f $(distdir)/$$file \
+           || cp -p $$d/$$file $(distdir)/$$file \
+           || exit 1; \
+         fi; \
+       done
+       for subdir in $(SUBDIRS); do \
+         if test "$$subdir" = .; then :; else \
+           test -d $(distdir)/$$subdir \
+           || mkdir $(distdir)/$$subdir \
+           || exit 1; \
+           (cd $$subdir && \
+             $(MAKE) $(AM_MAKEFLAGS) \
+               top_distdir="$(top_distdir)" \
+               distdir=../$(distdir)/$$subdir \
+               distdir) \
+             || exit 1; \
+         fi; \
+       done
+check-am: all-am
+check: check-recursive
+all-am: Makefile
+installdirs: installdirs-recursive
+installdirs-am:
+
+install: install-recursive
+install-exec: install-exec-recursive
+install-data: install-data-recursive
+uninstall: uninstall-recursive
+
+install-am: all-am
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-recursive
+install-strip:
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+         `test -z '$(STRIP)' || \
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+       -rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
+
+maintainer-clean-generic:
+       @echo "This command is intended for maintainers to use"
+       @echo "it deletes files that may require special tools to rebuild."
+clean: clean-recursive
+
+clean-am: clean-generic mostlyclean-am
+
+distclean: distclean-recursive
+
+distclean-am: clean-am distclean-generic distclean-tags
+
+dvi: dvi-recursive
+
+dvi-am:
+
+info: info-recursive
+
+info-am:
+
+install-data-am:
+
+install-exec-am:
+
+install-info: install-info-recursive
+
+install-man:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-recursive
+
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-recursive
+
+mostlyclean-am: mostlyclean-generic
+
+uninstall-am: uninstall-info-am
+
+uninstall-info: uninstall-info-recursive
+
+.PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
+       clean-generic clean-recursive distclean distclean-generic \
+       distclean-recursive distclean-tags distdir dvi dvi-am \
+       dvi-recursive info info-am info-recursive install install-am \
+       install-data install-data-am install-data-recursive \
+       install-exec install-exec-am install-exec-recursive \
+       install-info install-info-am install-info-recursive install-man \
+       install-recursive install-strip installcheck installcheck-am \
+       installdirs installdirs-am installdirs-recursive \
+       maintainer-clean maintainer-clean-generic \
+       maintainer-clean-recursive mostlyclean mostlyclean-generic \
+       mostlyclean-recursive tags tags-recursive uninstall \
+       uninstall-am uninstall-info-am uninstall-info-recursive \
+       uninstall-recursive
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
index 47412c9a550edd30be7acdfff8aa3c88a68920d6..1935328d6f0427f7fb5611f13523c94540b0bdc1 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid LDAP authentication helper
 #
-#  $Id: Makefile.in,v 1.13 2002/04/13 15:37:51 hno Exp $
+#  $Id: Makefile.in,v 1.14 2002/06/26 10:37:32 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -44,7 +44,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -127,7 +127,7 @@ EXTRA_DIST = squid_ldap_auth.8
 squid_ldap_auth_SOURCES = squid_ldap_auth.c
 
 LDADD = -lldap -llber
-subdir = src/auth/basic/helpers/LDAP
+subdir = helpers/basic_auth/LDAP
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -165,7 +165,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/basic/helpers/LDAP/Makefile
+         $(AUTOMAKE) --foreign  helpers/basic_auth/LDAP/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -295,7 +295,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 5df2f112bee6f9e91f0d42447a07cc626e9b9905..19773ea1a626b0fc35c211aceacbf4be2360ed78 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.14 2002/06/19 22:53:56 wessels Exp $
+#  $Id: Makefile.in,v 1.15 2002/06/26 10:37:33 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -44,7 +44,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -144,7 +144,7 @@ LDADD = @XTRA_LIBS@
 INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
                -I$(top_srcdir)/src/
 
-subdir = src/auth/basic/helpers/MSNT
+subdir = helpers/basic_auth/MSNT
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -189,7 +189,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/basic/helpers/MSNT/Makefile
+         $(AUTOMAKE) --foreign  helpers/basic_auth/MSNT/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -293,7 +293,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 08f3aab88de441d3f437f6898428a1e49e983ea8..b43dcd0608c8e9937a50885cc73cc0ce84407f16 100644 (file)
@@ -15,7 +15,7 @@
 
 #  Makefile for storage modules in the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.12 2002/05/20 01:48:02 hno Exp $
+#  $Id: Makefile.in,v 1.13 2002/06/26 10:37:32 hno Exp $
 #
 
 SHELL = @SHELL@
@@ -41,7 +41,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../..
+top_builddir = ../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -120,7 +120,7 @@ makesnmplib = @makesnmplib@
 
 DIST_SUBDIRS = getpwnam LDAP MSNT multi-domain-NTLM NCSA PAM SMB YP SASL winbind
 SUBDIRS = @BASIC_AUTH_HELPERS@
-subdir = src/auth/basic/helpers
+subdir = helpers/basic_auth
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -136,7 +136,7 @@ all: all-recursive
 .SUFFIXES:
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/basic/helpers/Makefile
+         $(AUTOMAKE) --foreign  helpers/basic_auth/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -237,7 +237,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../..
+top_distdir = ../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 50482a7bdba092b844245c4fe4512095b171dd06..8660ee39e50df94029e8a3fdd1ead2d1907a69c3 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.11 2002/04/13 15:37:55 hno Exp $
+#  $Id: Makefile.in,v 1.12 2002/06/26 10:37:34 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -44,7 +44,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -127,7 +127,7 @@ LDADD = -L$(top_builddir)/lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
 INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
                -I$(top_srcdir)/src/
 
-subdir = src/auth/basic/helpers/NCSA
+subdir = helpers/basic_auth/NCSA
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -162,7 +162,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/basic/helpers/NCSA/Makefile
+         $(AUTOMAKE) --foreign  helpers/basic_auth/NCSA/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -253,7 +253,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index ac203c4606afbc8be30673de2c895dab8675782f..993acc65d285728d18900a1c13b73de011f39cd0 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid PAM authentication helper
 #
-#  $Id: Makefile.in,v 1.12 2002/04/13 15:37:56 hno Exp $
+#  $Id: Makefile.in,v 1.13 2002/06/26 10:37:34 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -44,7 +44,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -129,7 +129,7 @@ man_MANS = pam_auth.8
 EXTRA_DIST = pam_auth.8
 libexec_PROGRAMS = pam_auth
 LDADD = -lpam $(XTRA_LIBS)
-subdir = src/auth/basic/helpers/PAM
+subdir = helpers/basic_auth/PAM
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -167,7 +167,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/basic/helpers/PAM/Makefile
+         $(AUTOMAKE) --foreign  helpers/basic_auth/PAM/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -297,7 +297,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 8a3ba1e6be97b2dc67455e7b0433c699cd595f1d..bc21880afb24c13469b9769525b3c6e59e072370 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid SASL authentication helper
 #
-#  $Id: Makefile.in,v 1.9 2002/04/15 00:17:19 hno Exp $
+#  $Id: Makefile.in,v 1.10 2002/06/26 10:37:35 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -44,7 +44,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -128,7 +128,7 @@ INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
 libexec_PROGRAMS = sasl_auth
 LDADD = -lsasl $(XTRA_LIBS)
 EXTRA_DIST = squid_sasl_auth squid_sasl_auth.conf
-subdir = src/auth/basic/helpers/SASL
+subdir = helpers/basic_auth/SASL
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -163,7 +163,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/basic/helpers/SASL/Makefile
+         $(AUTOMAKE) --foreign  helpers/basic_auth/SASL/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -254,7 +254,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 4e188f8368bf3090f64f587dbeaa9f6247b844e3..89aae12a63ff93fdf294425ed38f785771d2c2c5 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.12 2002/05/20 02:05:32 hno Exp $
+#  $Id: Makefile.in,v 1.13 2002/06/26 10:37:35 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -49,7 +49,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -140,7 +140,7 @@ LDADD = $(XTRA_LIBS)
 INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
                  -I$(top_srcdir)/src/
 
-subdir = src/auth/basic/helpers/SMB
+subdir = helpers/basic_auth/SMB
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -177,7 +177,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/basic/helpers/SMB/Makefile
+         $(AUTOMAKE) --foreign  helpers/basic_auth/SMB/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -302,7 +302,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index ade5086b908a1968e6f3b4b8f0fcf90ac07280ef..fcc3aff86b51e998bca198cd2ccadbc7365b956d 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.13 2002/04/13 15:37:59 hno Exp $
+#  $Id: Makefile.in,v 1.14 2002/06/26 10:37:36 hno Exp $
 #
 #
 
@@ -43,7 +43,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -126,7 +126,7 @@ LDADD = -L$(top_builddir)/lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
 INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
                  -I$(top_srcdir)/src/
 
-subdir = src/auth/basic/helpers/YP
+subdir = helpers/basic_auth/YP
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -161,7 +161,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/basic/helpers/YP/Makefile
+         $(AUTOMAKE) --foreign  helpers/basic_auth/YP/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -253,7 +253,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 6c6810d85231e27e5ae1bbd45b958dc21bb13f2c..b12dd9c202eb5e10e2ede3d72d9a24c937a2684a 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.11 2002/04/13 15:38:00 hno Exp $
+#  $Id: Makefile.in,v 1.12 2002/06/26 10:37:37 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -44,7 +44,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -130,7 +130,7 @@ INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
 
 
 LDADD = -L$(top_builddir)/lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
-subdir = src/auth/basic/helpers/getpwnam
+subdir = helpers/basic_auth/getpwnam
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -165,7 +165,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/basic/helpers/getpwnam/Makefile
+         $(AUTOMAKE) --foreign  helpers/basic_auth/getpwnam/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -256,7 +256,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 49fce7d1387c94a1926c1d477ca8ee686941c438..49bb5bbbf82c174c901309d84b574bc8fa9c6bbc 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.10 2002/05/20 02:05:34 hno Exp $
+#  $Id: Makefile.in,v 1.11 2002/06/26 10:37:38 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -44,7 +44,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -129,7 +129,7 @@ EXTRA_DIST = \
        smb_auth.pl \
        README.txt
 
-subdir = src/auth/basic/helpers/multi-domain-NTLM
+subdir = helpers/basic_auth/multi-domain-NTLM
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -142,7 +142,7 @@ all: all-am
 .SUFFIXES:
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/basic/helpers/multi-domain-NTLM/Makefile
+         $(AUTOMAKE) --foreign  helpers/basic_auth/multi-domain-NTLM/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -175,7 +175,7 @@ TAGS:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 01b546c68cf416a9fe44a4c0392531392b827b44..aa252e1cbd22978e40dea5d593f569fe711a3f81 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.3 2002/05/23 14:03:43 hno Exp $
+#  $Id: Makefile.in,v 1.4 2002/06/26 10:37:38 hno Exp $
 #
 
 SHELL = @SHELL@
@@ -42,7 +42,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -125,7 +125,7 @@ INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
     -I$(top_srcdir)/src
 
 LDADD = -L$(top_builddir)/lib -lmiscutil -lntlmauth $(XTRA_LIBS)
-subdir = src/auth/basic/helpers/winbind
+subdir = helpers/basic_auth/winbind
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -161,7 +161,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/basic/helpers/winbind/Makefile
+         $(AUTOMAKE) --foreign  helpers/basic_auth/winbind/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -253,7 +253,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 41e33357ba4a1ed1c405d3d6a8551eadb22878a7..9bfc43395f6d3134d217c2ad09be6acde0a2eae3 100644 (file)
@@ -15,7 +15,7 @@
 
 #  Makefile for digest auth helpers in the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.9 2002/04/13 15:38:03 hno Exp $
+#  $Id: Makefile.in,v 1.10 2002/06/26 10:37:39 hno Exp $
 #
 
 SHELL = @SHELL@
@@ -41,7 +41,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../..
+top_builddir = ../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -120,7 +120,7 @@ makesnmplib = @makesnmplib@
 
 DIST_SUBDIRS = password
 SUBDIRS = @DIGEST_AUTH_HELPERS@
-subdir = src/auth/digest/helpers
+subdir = helpers/digest_auth
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -136,7 +136,7 @@ all: all-recursive
 .SUFFIXES:
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/digest/helpers/Makefile
+         $(AUTOMAKE) --foreign  helpers/digest_auth/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -237,7 +237,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../..
+top_distdir = ../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 9a3813b826e62041a825606f97f4687948c15515..1644b246f81143a3fc28a2450989a309a7c8dac8 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.11 2002/04/13 15:38:04 hno Exp $
+#  $Id: Makefile.in,v 1.12 2002/06/26 10:37:39 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -44,7 +44,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -127,7 +127,7 @@ INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
 
 
 LDADD = -L$(top_builddir)/lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS) $(SSLLIB)
-subdir = src/auth/digest/helpers/password
+subdir = helpers/digest_auth/password
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -162,7 +162,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/digest/helpers/password/Makefile
+         $(AUTOMAKE) --foreign  helpers/digest_auth/password/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -253,7 +253,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 2b2986369b7d84b2ad992345134684921a0024f5..d3a6003ebfec514752ab4388ba5544be7284a79a 100644 (file)
@@ -15,7 +15,7 @@
 
 #  Makefile for storage modules in the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.12 2002/05/19 23:48:20 hno Exp $
+#  $Id: Makefile.in,v 1.13 2002/06/26 10:37:40 hno Exp $
 #
 
 SHELL = @SHELL@
@@ -41,7 +41,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../..
+top_builddir = ../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -120,7 +120,7 @@ makesnmplib = @makesnmplib@
 
 DIST_SUBDIRS = fakeauth no_check SMB winbind
 SUBDIRS = @NTLM_AUTH_HELPERS@
-subdir = src/auth/ntlm/helpers
+subdir = helpers/ntlm_auth
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -136,7 +136,7 @@ all: all-recursive
 .SUFFIXES:
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/ntlm/helpers/Makefile
+         $(AUTOMAKE) --foreign  helpers/ntlm_auth/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -237,7 +237,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../..
+top_distdir = ../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 3072b0a6cf18e2ce28bf70728831a441a7fb55a8..c76f59f8ae2e10d96483b0f1de7256993db39502 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.12 2002/05/19 15:16:40 hno Exp $
+#  $Id: Makefile.in,v 1.13 2002/06/26 10:37:41 hno Exp $
 #
 
 SHELL = @SHELL@
@@ -42,7 +42,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -129,7 +129,7 @@ INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
 LDADD = smbval/libsmbvalid.a -L$(top_builddir)/lib -lntlmauth \
                  -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
 
-subdir = src/auth/ntlm/helpers/SMB
+subdir = helpers/ntlm_auth/SMB
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -170,7 +170,7 @@ all: all-recursive
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/ntlm/helpers/SMB/Makefile
+         $(AUTOMAKE) --foreign  helpers/ntlm_auth/SMB/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -322,7 +322,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index e1c9ff4e5ac3203991e27c96f555e677191545e6..64409f6892d29cd36bf3a1a77609ba43a760d786 100644 (file)
@@ -38,7 +38,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../../..
+top_builddir = ../../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -126,7 +126,7 @@ libsmbvalid_a_SOURCES = valid.c session.c rfcnb-util.c rfcnb-io.c \
        md4.h           rfcnb-io.h     rfcnb.h       smblib-common.h  std-defines.h \
        rfcnb-common.h  rfcnb-priv.h   smbdes.h      smblib-priv.h    std-includes.h 
 
-subdir = src/auth/ntlm/helpers/SMB/smbval
+subdir = helpers/ntlm_auth/SMB/smbval
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -166,7 +166,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/ntlm/helpers/SMB/smbval/Makefile
+         $(AUTOMAKE) --foreign  helpers/ntlm_auth/SMB/smbval/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -248,7 +248,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../../..
+top_distdir = ../../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index b862dde92ae4b6e7723ad9e29024b747ed645736..c4669c35a82afd5ae055c5765a372cdf52d9b1cf 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.11 2002/04/13 15:38:09 hno Exp $
+#  $Id: Makefile.in,v 1.12 2002/06/26 10:37:42 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -44,7 +44,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -127,7 +127,7 @@ INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
                -I$(top_srcdir)/src/
 
 LDADD = -L$(top_builddir)/lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
-subdir = src/auth/ntlm/helpers/fakeauth
+subdir = helpers/ntlm_auth/fakeauth
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -162,7 +162,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/ntlm/helpers/fakeauth/Makefile
+         $(AUTOMAKE) --foreign  helpers/ntlm_auth/fakeauth/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -253,7 +253,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index b5571e988a778c15b1580a76f308c2e9a944dd42..7595eee96906fb2680dad1f17f2cb2acf88ece8d 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.13 2002/05/20 02:05:35 hno Exp $
+#  $Id: Makefile.in,v 1.14 2002/06/26 10:37:42 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -44,7 +44,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -127,7 +127,7 @@ EXTRA_DIST = \
        no_check.pl \
        README.no_check_ntlm_auth
 
-subdir = src/auth/ntlm/helpers/no_check
+subdir = helpers/ntlm_auth/no_check
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -140,7 +140,7 @@ all: all-am
 .SUFFIXES:
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/ntlm/helpers/no_check/Makefile
+         $(AUTOMAKE) --foreign  helpers/ntlm_auth/no_check/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -173,7 +173,7 @@ TAGS:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 2322d2210c4d11313f77763e18411f383bd73da5..d11e6309baa8716a477a15fdc3e11d74915ed5b6 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.4 2002/05/23 14:03:44 hno Exp $
+#  $Id: Makefile.in,v 1.5 2002/06/26 10:37:43 hno Exp $
 #
 
 SHELL = @SHELL@
@@ -42,7 +42,7 @@ oldincludedir = /usr/include
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../../../../..
+top_builddir = ../../..
 
 ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@
@@ -129,7 +129,7 @@ INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \
     -I$(top_srcdir)/src
 
 LDADD = -L$(top_builddir)/lib -lmiscutil -lntlmauth $(XTRA_LIBS)
-subdir = src/auth/ntlm/helpers/winbind
+subdir = helpers/ntlm_auth/winbind
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
 CONFIG_CLEAN_FILES =
@@ -164,7 +164,7 @@ all: all-am
 .SUFFIXES: .c .o .obj
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
        cd $(top_srcdir) && \
-         $(AUTOMAKE) --foreign  src/auth/ntlm/helpers/winbind/Makefile
+         $(AUTOMAKE) --foreign  helpers/ntlm_auth/winbind/Makefile
 Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && \
          CONFIG_HEADERS= CONFIG_LINKS= \
@@ -256,7 +256,7 @@ distclean-tags:
 
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ../../../../..
+top_distdir = ../../..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
index 9cc765539ccadf59fe7ab1e892231d7fba63e964..150a20f006466bd9c805ef9d069054b9d6d0ef26 100644 (file)
@@ -1 +1 @@
-SUBDIRS = helpers
+SUBDIRS = 
index 1e221160faa65d2c53c0b677805fbe4c94d9d1f7..3839c383d98c24cb3e3b7adf8af33551402c8abb 100644 (file)
@@ -113,7 +113,7 @@ am__quote = @am__quote@
 install_sh = @install_sh@
 makesnmplib = @makesnmplib@
 
-SUBDIRS = helpers
+SUBDIRS = 
 subdir = src/auth/basic
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
index 9cc765539ccadf59fe7ab1e892231d7fba63e964..150a20f006466bd9c805ef9d069054b9d6d0ef26 100644 (file)
@@ -1 +1 @@
-SUBDIRS = helpers
+SUBDIRS = 
index c3cd753408ad6814e74ed2b2cca18f612945b446..e323f96feffb5de465e796bb9370d1114c45cf84 100644 (file)
@@ -113,7 +113,7 @@ am__quote = @am__quote@
 install_sh = @install_sh@
 makesnmplib = @makesnmplib@
 
-SUBDIRS = helpers
+SUBDIRS = 
 subdir = src/auth/digest
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h
index 9cc765539ccadf59fe7ab1e892231d7fba63e964..741f8508560924ad28c333eab697148b64166adc 100644 (file)
@@ -1 +1 @@
-SUBDIRS = helpers
+SUBDIRS =
index f60dd4241ff733898cb2e5b9b13a923a851b9f6c..05206b4e003d9f092f9d4826044e3d9621e19343 100644 (file)
@@ -113,7 +113,7 @@ am__quote = @am__quote@
 install_sh = @install_sh@
 makesnmplib = @makesnmplib@
 
-SUBDIRS = helpers
+SUBDIRS = 
 subdir = src/auth/ntlm
 mkinstalldirs = $(SHELL) $(top_srcdir)/cfgaux/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/include/autoconf.h