summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-10-21 04:45:33 +0000
committerTim Potter <tpot@samba.org>2003-10-21 04:45:33 +0000
commit8838f54497d5cab4f1120cfc87f611b3e7e42698 (patch)
treebc975318b6017fd14f19138fba09047080967216 /source3/configure.in
parent043be81ec79ca5b4939577146a93813250cac96e (diff)
downloadsamba-8838f54497d5cab4f1120cfc87f611b3e7e42698.tar.gz
samba-8838f54497d5cab4f1120cfc87f611b3e7e42698.tar.bz2
samba-8838f54497d5cab4f1120cfc87f611b3e7e42698.zip
Merge of krb5_keytab entry key vs keyblock member check from HEAD.
(This used to be commit 720f5e5629c54e851c3e9026dc88676795e44c8e)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in
index f3b3f9272b..16b0760802 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -2654,6 +2654,15 @@ if test x"$with_ads_support" != x"no"; then
[Whether in-memory keytabs are supported])
fi
+ AC_CHECK_MEMBER(krb5_keytab_entry.key,
+ AC_DEFINE(HAVE_KRB5_KEYTAB_ENTRY_KEY, 1,
+ [Whether krb5_keytab_entry has key member]), [],
+ [#include <krb5.h>])
+
+ AC_CHECK_MEMBER(krb5_keytab_entry.keyblock,
+ AC_DEFINE(HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK, 1,
+ [Whether krb5_keytab_entry has keyblock member]), [],
+ [#include <krb5.h>])
if test x"$ac_cv_lib_ext_krb5_krb5_mk_req_extended" = x"yes"; then
AC_DEFINE(HAVE_KRB5,1,[Whether to have KRB5 support])