From 03a1cd5bc9b11fda81f86cbf522f49a740f247c8 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Thu, 1 Jul 2010 00:56:11 +1200 Subject: [PATCH] Make ENABLE_AUTH_* automake conditionals available Pre-requisite for making the general code build obey --disable-auth-* --- configure.in | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.47.3