From: Alex Rousskov Date: Sun, 8 Mar 2009 19:38:12 +0000 (-0600) Subject: Removed AUTH_LIBS_TO_ADD as unused. auth/libauth.la now includes conditionally X-Git-Tag: SQUID_3_2_0_1~1111^2~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bcf44a2cdf79dd9b6ac6f0b1bd35b18289cc1de8;p=thirdparty%2Fsquid.git Removed AUTH_LIBS_TO_ADD as unused. auth/libauth.la now includes conditionally built auth libraries and src/Makefile.am no longer needs to know about them. Added acl/Makefile generation. Context: SourceLayout: acl/, take 1 --- diff --git a/configure.in b/configure.in index d60290a644..6f69f8c473 100644 --- a/configure.in +++ b/configure.in @@ -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 \