s4-waf: fixed waf distcheck for our standalone libs and s4
[samba.git] / lib / tdb / wscript
index 724030c84ce713915c62f8dbfa6327a7b2271908..d80b7209b0f814da93337927ed418cc527a21f2a 100644 (file)
@@ -1,30 +1,50 @@
-VERSION='1.2.1'
+#!/usr/bin/env python
+
+APPNAME = 'tdb'
+VERSION = '1.2.1'
 
-srcdir = '../..'
 blddir = 'bin'
 
-LIBREPLACE_DIR= srcdir + '/lib/replace'
+import sys, os
+
+# find the buildtools directory
+srcdir = '.'
+while not os.path.exists(srcdir+'/buildtools') and len(srcdir.split('/')) < 5:
+    srcdir = '../' + srcdir
+sys.path.insert(0, srcdir + '/buildtools/wafsamba')
+
+import wafsamba, samba_dist
+
+samba_dist.DIST_DIRS('lib/tdb:. lib/replace:lib/replace buildtools:buildtools')
 
 def set_options(opt):
-    opt.recurse(LIBREPLACE_DIR)
+    opt.BUILTIN_DEFAULT('replace')
+    opt.BUNDLED_EXTENSION_DEFAULT('tdb', noextenion='tdb')
+    opt.RECURSE('lib/replace')
 
 def configure(conf):
-    conf.sub_config(LIBREPLACE_DIR)
+    conf.RECURSE('lib/replace')
+
+    if conf.CHECK_BUNDLED_SYSTEM('tdb', minversion=VERSION,
+                                 implied_deps='replace'):
+        conf.define('USING_SYSTEM_TDB', 1)
+
     conf.SAMBA_CONFIG_H()
 
 def build(bld):
-    bld.BUILD_SUBDIR(LIBREPLACE_DIR)
+    bld.RECURSE('lib/replace')
 
     COMMON_SRC = bld.SUBDIR('common',
                             '''check.c error.c tdb.c traverse.c
                             freelistcheck.c lock.c dump.c freelist.c
                             io.c open.c transaction.c''')
 
-    bld.SAMBA_LIBRARY('tdb',
-                      COMMON_SRC,
-                      deps='replace',
-                      include_list='include',
-                      vnum=VERSION)
+    if not bld.CONFIG_SET('USING_SYSTEM_TDB'):
+        bld.SAMBA_LIBRARY('tdb',
+                          COMMON_SRC,
+                          deps='replace rt',
+                          includes='include',
+                          vnum=VERSION)
 
     bld.SAMBA_BINARY('tdbtorture',
                      'tools/tdbtorture.c',
@@ -41,3 +61,22 @@ def build(bld):
     bld.SAMBA_BINARY('tdbtool',
                      'tools/tdbtool.c',
                      'tdb')
+
+    s4_build = getattr(bld.env, '_SAMBA_BUILD_', 0) == 4
+
+    bld.SAMBA_PYTHON('pytdb',
+                     'pytdb.c',
+                     deps='tdb',
+                     enabled=s4_build,
+                     realname='tdb.so')
+
+
+def test(ctx):
+    '''run tdb testsuite'''
+    import Utils
+    cmd = os.path.join(Utils.g_module.blddir, 'tdbtorture')
+    os.system(cmd)
+
+def dist():
+    '''makes a tarball for distribution'''
+    samba_dist.dist()