summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-03-12 19:26:16 +1100
committerStefan Metzmacher <metze@samba.org>2012-04-03 17:47:32 +0200
commitbc3e52d9d01e6884b1d9473f6b13d07ecaad9c02 (patch)
treec67830af44a9dcffeae23613f5dc58d725c625bd /source3
parente5684b3c6f1b42e54582f0791c61abdf126cb876 (diff)
downloadsamba-bc3e52d9d01e6884b1d9473f6b13d07ecaad9c02.tar.gz
build: Remove unused check for HAVE_KRB5_TKT_ENC_PART2
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/configure.in11
-rw-r--r--source3/wscript2
2 files changed, 0 insertions, 13 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 11bd744dc9d..d7cc0f850e6 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -4063,17 +4063,6 @@ if test x"$with_ads_support" != x"no"; then
[Whether the krb5_address struct has a addr_type property])
fi
- AC_CACHE_CHECK([for enc_part2 in krb5_ticket],
- samba_cv_HAVE_KRB5_TKT_ENC_PART2,
- [AC_TRY_COMPILE([#include <krb5.h>],
- [krb5_ticket tkt; tkt.enc_part2->authorization_data[0]->contents = NULL;],
- samba_cv_HAVE_KRB5_TKT_ENC_PART2=yes,samba_cv_HAVE_KRB5_TKT_ENC_PART2=no)])
-
- if test x"$samba_cv_HAVE_KRB5_TKT_ENC_PART2" = x"yes"; then
- AC_DEFINE(HAVE_KRB5_TKT_ENC_PART2,1,
- [Whether the krb5_ticket struct has a enc_part2 property])
- fi
-
AC_CACHE_CHECK([for keyvalue in krb5_keyblock],
samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE,[
AC_TRY_COMPILE([#include <krb5.h>],
diff --git a/source3/wscript b/source3/wscript
index 26c231b4e0a..d8be824b634 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -611,8 +611,6 @@ krb5_get_credentials_for_user krb5_get_host_realm krb5_free_host_realm''',
define='HAVE_MAGIC_IN_KRB5_ADDRESS')
conf.CHECK_STRUCTURE_MEMBER('krb5_address', 'addrtype', headers='krb5.h',
define='HAVE_ADDRTYPE_IN_KRB5_ADDRESS')
- conf.CHECK_STRUCTURE_MEMBER('krb5_ticket', 'enc_part2', headers='krb5.h',
- define='HAVE_KRB5_TKT_ENC_PART2')
conf.CHECK_STRUCTURE_MEMBER('krb5_ap_req', 'ticket', headers='krb5.h',
define='HAVE_TICKET_POINTER_IN_KRB5_AP_REQ')