]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Removed AUTH_LIBS_TO_ADD as unused. auth/libauth.la now includes conditionally
authorAlex Rousskov <rousskov@measurement-factory.com>
Sun, 8 Mar 2009 19:38:12 +0000 (13:38 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Sun, 8 Mar 2009 19:38:12 +0000 (13:38 -0600)
built auth libraries and src/Makefile.am no longer needs to know about them.

Added acl/Makefile generation.

Context: SourceLayout: acl/, take 1

configure.in

index d60290a6449961fc8101d3cdfaa6ab3d0ec035ab..6f69f8c47391e9dde35f5685731b8892fe8b5957 100644 (file)
@@ -1561,15 +1561,10 @@ fi
 dnl Authentication libraries to build
 dnl This list will not be needed when each auth library has its own Makefile
 AUTH_LIBS_TO_BUILD=
-dnl Authentication libraries to link authenticating executables with.
-dnl These are the same as AUTH_LIBS_TO_BUILD, but with a path
-AUTH_LIBS_TO_ADD=
 for module in $AUTH_MODULES; do
-    AUTH_LIBS_TO_BUILD="$AUTH_LIBS_TO_BUILD lib${module}.a"
-    AUTH_LIBS_TO_ADD="$AUTH_LIBS_TO_ADD auth/lib${module}.a"
+    AUTH_LIBS_TO_BUILD="$AUTH_LIBS_TO_BUILD lib${module}.la"
 done
 AC_SUBST(AUTH_MODULES)
-AC_SUBST(AUTH_LIBS_TO_ADD)
 AC_SUBST(AUTH_LIBS_TO_BUILD)
 
 dnl bundled auth modules, in order to have handy defines for the cppunit testsuite
@@ -3791,6 +3786,7 @@ AC_CONFIG_FILES([\
        scripts/RunAccel \
        src/Makefile \
        src/base/Makefile \
+       src/acl/Makefile \
        src/fs/Makefile \
        src/repl/Makefile \
        src/auth/Makefile \