diff options
author | Andrew Bartlett <abartlet@samba.org> | 2019-08-15 17:28:30 +1200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2019-08-21 09:57:31 +0000 |
commit | 068da56a20a2712e498fb3724407836bda2f977b (patch) | |
tree | 8feb46c18e17fcfb0b6ae5d76b6da0b4f8c1c159 /wscript_configure_system_gnutls | |
parent | 85a1c4973921fdf9412ec56a3ed6a77f3ab84116 (diff) | |
download | samba-068da56a20a2712e498fb3724407836bda2f977b.tar.gz |
build: Remove explicit check for HAVE_GNUTLS_AEAD as we require GnuTLS 3.4.7
We strictly require it and if this were to fail we would want the compile to fail.
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'wscript_configure_system_gnutls')
-rw-r--r-- | wscript_configure_system_gnutls | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/wscript_configure_system_gnutls b/wscript_configure_system_gnutls index 02e6567ba2f..68cc306e3dc 100644 --- a/wscript_configure_system_gnutls +++ b/wscript_configure_system_gnutls @@ -15,14 +15,6 @@ conf.SET_TARGET_TYPE('gnutls', 'SYSLIB') # Check for gnutls_pkcs7_get_embedded_data_oid (>= 3.5.5) required by libmscat conf.CHECK_FUNCS_IN('gnutls_pkcs7_get_embedded_data_oid', 'gnutls') -# Check for gnutls_aead_cipher_init (>= 3.4.0) used by encrypted_secrets -if conf.CHECK_FUNCS_IN('gnutls_aead_cipher_init', - 'gnutls', - headers='gnutls/gnutls.h'): - conf.DEFINE('HAVE_GNUTLS_AEAD', '1') -else: - Logs.warn('No gnutls support for AEAD encryption') - if conf.CHECK_VALUEOF('GNUTLS_CIPHER_AES_128_CFB8', headers='gnutls/gnutls.h'): conf.DEFINE('HAVE_GNUTLS_AES_CFB8', 1) else: |