From: Amos Jeffries Date: Wed, 30 Jun 2010 12:56:11 +0000 (+1200) Subject: Make ENABLE_AUTH_* automake conditionals available X-Git-Tag: SQUID_3_2_0_1~103 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=03a1cd5bc9b11fda81f86cbf522f49a740f247c8;p=thirdparty%2Fsquid.git Make ENABLE_AUTH_* automake conditionals available Pre-requisite for making the general code build obey --disable-auth-* --- diff --git a/configure.in b/configure.in index 1e6745bd4e..92a82cd8c9 100644 --- a/configure.in +++ b/configure.in @@ -1536,6 +1536,7 @@ if test "$enable_auth_basic" != "no" ; then done fi AC_MSG_NOTICE([Basic auth helpers to be built: $BASIC_AUTH_HELPERS]) +AM_CONDITIONAL(ENABLE_AUTH_BASIC, test "$enable_auth_basic" != "no") AC_SUBST(BASIC_AUTH_HELPERS) AC_ARG_ENABLE(auth-ntlm, @@ -1622,6 +1623,7 @@ if test "$enable_auth_negotiate" != "no" ; then done fi AC_MSG_NOTICE([Negotiate auth helpers built: $NEGOTIATE_AUTH_HELPERS]) +AM_CONDITIONAL(ENABLE_AUTH_NEGOTIATE, test "$enable_auth_negotiate" != "no") AC_SUBST(NEGOTIATE_AUTH_HELPERS) AC_ARG_ENABLE(auth-digest, @@ -1664,6 +1666,7 @@ if test "$enable_auth_digest" != "no" ; then done fi AC_MSG_NOTICE([Digest auth helpers built: $DIGEST_AUTH_HELPERS]) +AM_CONDITIONAL(ENABLE_AUTH_DIGEST, test "$enable_auth_digest" != "no") AC_SUBST(DIGEST_AUTH_HELPERS) dnl Authentication libraries to build