2010-03-28 01:48:49 +03:00
#!/usr/bin/env python
2010-04-04 04:06:34 +04:00
APPNAME = 'tdb'
2010-09-10 06:47:32 +04:00
VERSION = '1.2.4'
2010-03-17 12:31:46 +03:00
2010-03-17 12:32:15 +03:00
blddir = 'bin'
2010-02-20 16:24:40 +03:00
2010-04-04 04:18:39 +04:00
import sys, os
# find the buildtools directory
2010-04-04 07:16:49 +04:00
srcdir = '.'
while not os.path.exists(srcdir+'/buildtools') and len(srcdir.split('/')) < 5:
srcdir = '../' + srcdir
sys.path.insert(0, srcdir + '/buildtools/wafsamba')
2010-04-04 04:18:39 +04:00
2010-04-13 14:13:00 +04:00
import wafsamba, samba_dist, Options, Logs
2010-04-04 05:00:42 +04:00
samba_dist.DIST_DIRS('lib/tdb:. lib/replace:lib/replace buildtools:buildtools')
2010-02-26 14:21:50 +03:00
2010-02-20 16:24:40 +03:00
def set_options(opt):
2010-03-28 08:42:28 +04:00
opt.BUILTIN_DEFAULT('replace')
2010-06-19 14:10:29 +04:00
opt.BUNDLED_EXTENSION_DEFAULT('tdb', noextension='tdb')
2010-04-04 07:16:49 +04:00
opt.RECURSE('lib/replace')
2010-04-13 14:13:00 +04:00
if opt.IN_LAUNCH_DIR():
opt.add_option('--disable-python',
help=("disable the pytdb module"),
action="store_true", dest='disable_python', default=False)
2010-02-20 16:24:40 +03:00
def configure(conf):
2010-04-04 07:16:49 +04:00
conf.RECURSE('lib/replace')
2010-03-28 09:38:27 +04:00
2010-04-13 14:13:00 +04:00
conf.env.standalone_tdb = conf.IN_LAUNCH_DIR()
2010-04-13 15:33:04 +04:00
if not conf.env.standalone_tdb:
if conf.CHECK_BUNDLED_SYSTEM('tdb', minversion=VERSION,
implied_deps='replace'):
conf.define('USING_SYSTEM_TDB', 1)
2010-04-13 14:13:00 +04:00
conf.env.disable_python = getattr(Options.options, 'disable_python', False)
2010-06-24 10:03:02 +04:00
conf.CHECK_XSLTPROC_MANPAGES()
2010-04-13 14:13:00 +04:00
if not conf.env.disable_python:
# also disable if we don't have the python libs installed
conf.check_tool('python')
conf.check_python_version((2,4,2))
2010-04-21 10:17:08 +04:00
conf.check_python_headers(mandatory=False)
2010-04-13 14:13:00 +04:00
if not conf.env.HAVE_PYTHON_H:
Logs.warn('Disabling pytdb as python devel libs not found')
conf.env.disable_python = True
2010-03-17 12:31:46 +03:00
conf.SAMBA_CONFIG_H()
2010-02-20 16:24:40 +03:00
def build(bld):
2010-04-04 07:16:49 +04:00
bld.RECURSE('lib/replace')
2010-02-20 16:24:40 +03:00
2010-03-17 12:31:46 +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
2010-03-28 09:38:27 +04:00
if not bld.CONFIG_SET('USING_SYSTEM_TDB'):
bld.SAMBA_LIBRARY('tdb',
COMMON_SRC,
2010-08-31 15:06:39 +04:00
deps='replace',
2010-03-28 09:38:27 +04:00
includes='include',
2010-04-18 06:46:33 +04:00
abi_file='ABI/tdb-%s.sigs' % VERSION,
abi_match='tdb_*',
2010-04-20 07:53:35 +04:00
hide_symbols=True,
2010-05-31 04:43:17 +04:00
vnum=VERSION, is_bundled=not bld.env.standalone_tdb)
2010-02-20 16:24:40 +03:00
2010-05-31 06:20:44 +04:00
bld.SAMBA_BINARY('tdbtorture',
'tools/tdbtorture.c',
'tdb',
install=False)
bld.SAMBA_BINARY('tdbdump',
'tools/tdbdump.c',
'tdb', manpages='manpages/tdbdump.8')
bld.SAMBA_BINARY('tdbbackup',
'tools/tdbbackup.c',
'tdb',
manpages='manpages/tdbbackup.8')
bld.SAMBA_BINARY('tdbtool',
'tools/tdbtool.c',
'tdb', manpages='manpages/tdbtool.8')
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-04-13 14:13:00 +04:00
enabled=not bld.env.disable_python,
2010-03-17 09:20:02 +03:00
realname='tdb.so')
2010-04-13 14:13:00 +04:00
if bld.env.standalone_tdb:
bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
bld.PKG_CONFIG_FILES('tdb.pc', vnum=VERSION)
bld.INSTALL_FILES('${INCLUDEDIR}', 'include/tdb.h', flat=True)
2010-04-04 16:11:30 +04:00
def test(ctx):
'''run tdb testsuite'''
import Utils
cmd = os.path.join(Utils.g_module.blddir, 'tdbtorture')
os.system(cmd)
2010-04-05 03:58:23 +04:00
def dist():
'''makes a tarball for distribution'''
samba_dist.dist()