waf: disable-python - configuration adjustments
[sfrench/samba-autobuild/.git] / wscript
diff --git a/wscript b/wscript
index 407bcdc132eca03f24fbbace07c19e4a77d49187..4fd56ed002699543f8019075fcd43ba45460b1be 100644 (file)
--- a/wscript
+++ b/wscript
@@ -107,8 +107,12 @@ def configure(conf):
     conf.SAMBA_CHECK_PERL(mandatory=True)
     conf.find_program('xsltproc', var='XSLTPROC')
 
+    if conf.env.disable_python:
+        if not (Options.options.without_ad_dc):
+            raise Utils.WafError('--disable-python requires --without-ad-dc')
+
     conf.SAMBA_CHECK_PYTHON(mandatory=True, version=(2, 6, 0))
-    conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=True)
+    conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=(not conf.env.disable_python))
 
     if sys.platform == 'darwin' and not conf.env['HAVE_ENVIRON_DECL']:
         # Mac OSX needs to have this and it's also needed that the python is compiled with this