1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

third_party:waf: Do not recurse in aesni-intel if GnuTLS provides the cipher

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>

Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Mon Apr  4 19:31:28 UTC 2022 on sn-devel-184
This commit is contained in:
Andreas Schneider 2022-04-04 11:25:31 +02:00 committed by Jeremy Allison
parent efc2de0d8d
commit a543d38cd1

6
third_party/wscript vendored
View File

@ -5,7 +5,8 @@ from waflib import Options
def configure(conf):
conf.RECURSE('cmocka')
conf.RECURSE('popt')
conf.RECURSE('aesni-intel')
if not conf.CONFIG_SET('HAVE_GNUTLS_AES_CMAC'):
conf.RECURSE('aesni-intel')
if conf.CONFIG_GET('ENABLE_SELFTEST'):
conf.RECURSE('socket_wrapper')
conf.RECURSE('nss_wrapper')
@ -18,7 +19,8 @@ def configure(conf):
def build(bld):
bld.RECURSE('cmocka')
bld.RECURSE('popt')
bld.RECURSE('aesni-intel')
if not bld.CONFIG_SET('HAVE_GNUTLS_AES_CMAC'):
bld.RECURSE('aesni-intel')
if bld.CONFIG_GET('SOCKET_WRAPPER'):
bld.RECURSE('socket_wrapper')
if bld.CONFIG_GET('NSS_WRAPPER'):