diff options
author | Simo Sorce <idra@samba.org> | 2012-05-08 12:38:20 -0400 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2012-05-23 17:51:49 +0300 |
commit | ad945bc68f6b1e73a47bc0a33b35fcbf182f8137 (patch) | |
tree | 76f7be6394314cb68f210b0e3bda6fb4837a936b /source4/heimdal_build | |
parent | 302abe61900af3bd9b4fffe1b9e9d7e39cac599a (diff) | |
download | samba-ad945bc68f6b1e73a47bc0a33b35fcbf182f8137.tar.gz |
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.
Diffstat (limited to 'source4/heimdal_build')
-rwxr-xr-x | source4/heimdal_build/wscript_configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/heimdal_build/wscript_configure b/source4/heimdal_build/wscript_configure index 17b7361cad5..0b6ae88a352 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) |