diff options
author | Jeremy Allison <jra@samba.org> | 2008-08-08 15:15:36 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2008-08-08 15:15:36 -0700 |
commit | 6d99eedafc3f35a4cdd544c6eea9a7f527193b50 (patch) | |
tree | e3ba191dbbf064c4bd6b0b2b46497453a85c01e1 /source3/configure.in | |
parent | c6930a0b40a95294931888e8749be8cf90f50ac9 (diff) | |
download | samba-6d99eedafc3f35a4cdd544c6eea9a7f527193b50.tar.gz samba-6d99eedafc3f35a4cdd544c6eea9a7f527193b50.tar.xz samba-6d99eedafc3f35a4cdd544c6eea9a7f527193b50.zip |
Try and fix the build for systems that don't have krb5_auth_con_set_req_cksumtype().
Jeremy.
(This used to be commit 8598e7b06ec57ca6fcde863270e6bb0e2de9993e)
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index ae308cee564..32dbaa4bfaa 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -3383,6 +3383,7 @@ if test x"$with_ads_support" != x"no"; then AC_CHECK_FUNC_EXT(krb5_get_init_creds_opt_get_error, $KRB5_LIBS) AC_CHECK_FUNC_EXT(krb5_enctype_to_string, $KRB5_LIBS) AC_CHECK_FUNC_EXT(krb5_fwd_tgt_creds, $KRB5_LIBS) + AC_CHECK_FUNC_EXT(krb5_auth_con_set_req_cksumtype, $KRB5_LIBS) LIBS="$KRB5_LIBS $LIBS" |