1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/lib/tdb/wscript

77 lines
2.0 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env python
APPNAME = 'tdb'
VERSION = '1.2.1'
2010-03-17 12:32:15 +03:00
blddir = 'bin'
2010-02-20 16:24:40 +03:00
import sys, os
# find the buildtools directory
buildtools = 'buildtools'
while not os.path.exists(buildtools) and len(buildtools.split('/')) < 5:
buildtools = '../' + buildtools
srcdir = os.path.dirname(buildtools) or '.'
sys.path.insert(0, buildtools + "/wafsamba")
import wafsamba, samba_dist
samba_dist.DIST_DIRS('lib/tdb:. lib/replace:lib/replace buildtools:buildtools')
LIBREPLACE_DIR= '../replace'
2010-02-20 16:24:40 +03:00
def set_options(opt):
opt.BUILTIN_DEFAULT('replace')
opt.BUNDLED_EXTENSION_DEFAULT('tdb', noextenion='tdb')
opt.RECURSE(LIBREPLACE_DIR)
2010-02-20 16:24:40 +03:00
def configure(conf):
conf.RECURSE(LIBREPLACE_DIR)
if conf.CHECK_BUNDLED_SYSTEM('tdb', minversion=VERSION,
implied_deps='replace'):
conf.define('USING_SYSTEM_TDB', 1)
conf.SAMBA_CONFIG_H()
2010-02-20 16:24:40 +03:00
def build(bld):
bld.RECURSE(LIBREPLACE_DIR)
2010-02-20 16:24:40 +03:00
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''')
2010-02-20 16:24:40 +03:00
if not bld.CONFIG_SET('USING_SYSTEM_TDB'):
bld.SAMBA_LIBRARY('tdb',
COMMON_SRC,
deps='replace rt',
includes='include',
vnum=VERSION)
2010-02-20 16:24:40 +03:00
bld.SAMBA_BINARY('tdbtorture',
'tools/tdbtorture.c',
'tdb')
2010-02-20 16:27:37 +03:00
bld.SAMBA_BINARY('tdbdump',
'tools/tdbdump.c',
'tdb')
bld.SAMBA_BINARY('tdbbackup',
'tools/tdbbackup.c',
'tdb')
bld.SAMBA_BINARY('tdbtool',
'tools/tdbtool.c',
'tdb')
2010-03-17 09:20:02 +03:00
2010-03-17 09:52:41 +03:00
s4_build = getattr(bld.env, '_SAMBA_BUILD_', 0) == 4
2010-03-17 09:20:02 +03:00
bld.SAMBA_PYTHON('pytdb',
'pytdb.c',
deps='tdb',
2010-03-17 09:52:41 +03:00
enabled=s4_build,
2010-03-17 09:20:02 +03:00
realname='tdb.so')