waf: Do not recurse into ntdb
authorVolker Lendecke <vl@samba.org>
Thu, 12 Mar 2015 13:16:49 +0000 (13:16 +0000)
committerMichael Adam <obnox@samba.org>
Tue, 17 Mar 2015 10:30:51 +0000 (11:30 +0100)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
wscript
wscript_build

diff --git a/wscript b/wscript
index d6db12c4a73a6cc973033e48371ac1b15d6e0d7d..215bcaf4adc6f8b528bb4e3d80faadc2e937c727 100644 (file)
--- a/wscript
+++ b/wscript
@@ -37,7 +37,6 @@ def set_options(opt):
     opt.RECURSE('lib/replace')
     opt.RECURSE('dynconfig')
     opt.RECURSE('lib/ldb')
-    opt.RECURSE('lib/ntdb')
     opt.RECURSE('selftest')
     opt.RECURSE('source4/lib/tls')
     opt.RECURSE('pidl')
@@ -153,7 +152,6 @@ def configure(conf):
     conf.RECURSE('source4/ntvfs/sysdep')
     conf.RECURSE('lib/util')
     conf.RECURSE('lib/ccan')
-    conf.RECURSE('lib/ntdb')
     conf.RECURSE('lib/util/charset')
     conf.RECURSE('source4/auth')
     conf.RECURSE('nsswitch')
@@ -262,7 +260,7 @@ def pydoctor(ctx):
     '''build python apidocs'''
     bp = os.path.abspath('bin/python')
     mpaths = {}
-    modules = ['talloc', 'tdb', 'ldb', 'ntdb']
+    modules = ['talloc', 'tdb', 'ldb']
     for m in modules:
         f = os.popen("PYTHONPATH=%s python -c 'import %s; print %s.__file__'" % (bp, m, m), 'r')
         try:
index 230f397dc724b5da9eb974ae4bcd53f6bf924a2b..d525b27187c8b36d08ea84047e5b2390232b8149 100644 (file)
@@ -43,8 +43,6 @@ bld.RECURSE('lib/texpect')
 bld.RECURSE('lib/addns')
 bld.RECURSE('lib/ccan')
 bld.RECURSE('lib/tdb_compat')
-if not bld.env.disable_ntdb:
-    bld.RECURSE('lib/ntdb')
 bld.RECURSE('lib/ldb')
 bld.RECURSE('lib/param')
 bld.RECURSE('dynconfig')