From ad945bc68f6b1e73a47bc0a33b35fcbf182f8137 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 8 May 2012 12:38:20 -0400 Subject: gensec_gssapi: Make it possible to build with MIT krb5 We need to ifdef out some minor things here because there is no available API to set these options in MIT. The realm and canonicalize options should be not interesting in the client case. Same for the send_to_kdc hacks. Also the OLD DES3 enctype is not at all interesting. I am not aware that Windows will ever use DES3 and no modern implementation relies on that enctype anymore as it has been fully deprecated long ago, so we can simply ignore it. --- wscript_configure_krb5 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'wscript_configure_krb5') diff --git a/wscript_configure_krb5 b/wscript_configure_krb5 index 26a92a8a94..ba7ecf3c16 100644 --- a/wscript_configure_krb5 +++ b/wscript_configure_krb5 @@ -157,6 +157,13 @@ conf.CHECK_CODE(''' '_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5', headers='krb5.h', lib='krb5', msg="Checking whether the ENCTYPE_ARCFOUR_HMAC_MD5 key type definition is available"); +conf.CHECK_CODE(''' + krb5_enctype enctype; + enctype = ENCTYPE_ARCFOUR_HMAC_MD5_56; + ''', + '_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5_56', + headers='krb5.h', lib='krb5', + msg="Checking whether the ENCTYPE_ARCFOUR_HMAC_MD5_56 key type definition is available"); conf.CHECK_CODE(''' krb5_keytype keytype; keytype = KEYTYPE_ARCFOUR_56; @@ -166,6 +173,8 @@ conf.CHECK_CODE(''' msg="Checking whether the HAVE_KEYTYPE_ARCFOUR_56 key type definition is available"); if conf.CONFIG_SET('_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5') and conf.CONFIG_SET('_HAVE_KEYTYPE_ARCFOUR_56'): conf.DEFINE('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5', '1') +if conf.CONFIG_SET('_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5_56') and conf.CONFIG_SET('_HAVE_KEYTYPE_ARCFOUR_56'): + conf.DEFINE('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5_56', '1') conf.CHECK_CODE(''' krb5_enctype enctype; @@ -174,6 +183,13 @@ conf.CHECK_CODE(''' 'HAVE_ENCTYPE_ARCFOUR_HMAC', headers='krb5.h', lib='krb5', msg="Checking whether the ENCTYPE_ARCFOUR_HMAC key type definition is available"); +conf.CHECK_CODE(''' + krb5_enctype enctype; + enctype = ENCTYPE_ARCFOUR_HMAC_EXP; + ''', + 'HAVE_ENCTYPE_ARCFOUR_HMAC_EXP', + headers='krb5.h', lib='krb5', + msg="Checking whether the ENCTYPE_ARCFOUR_HMAC_EXP key type definition is available"); conf.CHECK_CODE(''' krb5_context context; -- cgit