summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2022-04-04 11:24:04 +0200
committerJeremy Allison <jra@samba.org>2022-04-04 18:38:36 +0000
commitefc2de0d8ded28d0d7e489f3b4f00c0d422f3747 (patch)
tree8e5a6d6fb3a9254cd831c0e54cb6e1aff886f2a3 /wscript
parent7b98e6fcb440d4f6b28825ba79d313f7fbbaa51e (diff)
downloadsamba-efc2de0d8ded28d0d7e489f3b4f00c0d422f3747.tar.gz
waf: Check for GnuTLS earlier
As GnuTLS is an essential part we need to check for it early so we can react on GnuTLS features in other wscripts. Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index d8220b35095..5b85d9a1682 100644
--- a/wscript
+++ b/wscript
@@ -189,6 +189,8 @@ def configure(conf):
conf.RECURSE('dynconfig')
conf.RECURSE('selftest')
+ conf.PROCESS_SEPARATE_RULE('system_gnutls')
+
conf.CHECK_CFG(package='zlib', minversion='1.2.3',
args='--cflags --libs',
mandatory=True)
@@ -297,8 +299,6 @@ def configure(conf):
if not conf.CONFIG_GET('KRB5_VENDOR'):
conf.PROCESS_SEPARATE_RULE('embedded_heimdal')
- conf.PROCESS_SEPARATE_RULE('system_gnutls')
-
conf.RECURSE('source4/dsdb/samdb/ldb_modules')
conf.RECURSE('source4/ntvfs/sysdep')
conf.RECURSE('lib/util')