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. --- source4/heimdal_build/wscript_configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/heimdal_build') diff --git a/source4/heimdal_build/wscript_configure b/source4/heimdal_build/wscript_configure index 17b7361cad..0b6ae88a35 100755 --- a/source4/heimdal_build/wscript_configure +++ b/source4/heimdal_build/wscript_configure @@ -147,9 +147,9 @@ conf.define('HAVE_ETYPE_IN_ENCRYPTEDDATA', 1) conf.define('KRB5_PRINC_REALM_RETURNS_REALM', 1) conf.define('HAVE_KRB5_PRINCIPAL_GET_REALM', 1) conf.define('HAVE_KRB5_H', 1) -conf.define('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5', 1) conf.define('HAVE_AP_OPTS_USE_SUBKEY', 1) conf.define('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5', 1) +conf.define('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5_56', 1) conf.define('HAVE_ENCTYPE_ARCFOUR_HMAC', 1) conf.define('HAVE_KRB5_PDU_NONE_DECL', 1) conf.define('HAVE_ENCTYPE_AES128_CTS_HMAC_SHA1_96', 1) -- cgit