summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-01-05 10:51:29 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-01-10 21:50:07 +0100
commit6b2e742d6c719258c8ff1c2309847e88bdae97e7 (patch)
tree79e819e85c4d6df9df58a56347244dc1b3662b76 /source3/configure.in
parent17e61e4290d7d95b0bdd2accda24e526484a1c51 (diff)
downloadsamba-6b2e742d6c719258c8ff1c2309847e88bdae97e7.tar.gz
samba-6b2e742d6c719258c8ff1c2309847e88bdae97e7.tar.bz2
samba-6b2e742d6c719258c8ff1c2309847e88bdae97e7.zip
krb5: Require krb5_c_verify_checksum is available to build with krb5
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 1847ad2181..fd28a4bb1a 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -3873,7 +3873,6 @@ if test x"$with_ads_support" != x"no"; then
AC_CHECK_FUNC_EXT(krb5_crypto_destroy, $KRB5_LIBS)
AC_CHECK_FUNC_EXT(krb5_decode_ap_req, $KRB5_LIBS)
AC_CHECK_FUNC_EXT(free_AP_REQ, $KRB5_LIBS)
- AC_CHECK_FUNC_EXT(krb5_verify_checksum, $KRB5_LIBS)
AC_CHECK_FUNC_EXT(krb5_c_verify_checksum, $KRB5_LIBS)
AC_CHECK_FUNC_EXT(krb5_principal_compare_any_realm, $KRB5_LIBS)
AC_CHECK_FUNC_EXT(krb5_parse_name_norealm, $KRB5_LIBS)
@@ -4444,10 +4443,9 @@ if test x"$with_ads_support" != x"no"; then
use_ads=no
fi
- if test x"$ac_cv_func_ext_krb5_c_verify_checksum" != x"yes" -a \
- x"$ac_cv_func_ext_krb5_verify_checksum" != x"yes"
+ if test x"$ac_cv_func_ext_krb5_c_verify_checksum" != x"yes"
then
- AC_MSG_WARN(no KRB5_VERIFY_CHECKSUM_FUNCTION detected)
+ AC_MSG_WARN(krb5_c_verify_checksum not found in -lkrb5)
use_ads=no
fi