summaryrefslogtreecommitdiff
path: root/third_party/wscript
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2022-04-04 11:25:31 +0200
committerJeremy Allison <jra@samba.org>2022-04-04 19:31:28 +0000
commita543d38cd1e6c59758005d83e5469d2bc3eb2c75 (patch)
treef5325bcc09f8c63169db786cf31cd0a696f28a7a /third_party/wscript
parentefc2de0d8ded28d0d7e489f3b4f00c0d422f3747 (diff)
downloadsamba-a543d38cd1e6c59758005d83e5469d2bc3eb2c75.tar.gz
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
Diffstat (limited to 'third_party/wscript')
-rw-r--r--third_party/wscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/third_party/wscript b/third_party/wscript
index 1f4bc1ce1d7..a17c15bcaa7 100644
--- a/third_party/wscript
+++ b/third_party/wscript
@@ -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'):