2010-03-28 01:48:49 +03:00
#!/usr/bin/env python
2010-04-04 04:06:34 +04:00
APPNAME = 'tdb'
2010-12-29 05:20:47 +03:00
VERSION = '1.2.9'
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-10-24 01:26:43 +04:00
opt.PRIVATE_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-10-04 15:39:32 +04:00
if conf.CHECK_BUNDLED_SYSTEM_PYTHON('pytdb', 'tdb', minversion=VERSION):
conf.define('USING_SYSTEM_PYTDB', 1)
2010-04-13 15:33:04 +04:00
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-12-10 01:42:32 +03:00
conf.SAMBA_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
2010-12-29 05:20:47 +03:00
io.c open.c transaction.c hash.c summary.c''')
2010-02-20 16:24:40 +03:00
2010-10-24 22:50:47 +04:00
if bld.env.standalone_tdb:
bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
bld.PKG_CONFIG_FILES('tdb.pc', vnum=VERSION)
private_library = False
else:
private_library = True
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-12-09 03:10:45 +03:00
abi_directory='ABI',
2010-04-18 06:46:33 +04:00
abi_match='tdb_*',
2010-04-20 07:53:35 +04:00
hide_symbols=True,
2010-12-09 13:58:20 +03:00
vnum=VERSION,
2011-03-03 08:27:44 +03:00
public_headers='include/tdb.h',
2011-03-03 09:19:33 +03:00
public_headers_install=not private_library,
2010-10-24 22:50:47 +04:00
private_library=private_library)
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)
2010-09-18 10:56:10 +04:00
bld.SAMBA_BINARY('tdbrestore',
'tools/tdbrestore.c',
'tdb', manpages='manpages/tdbrestore.8')
2010-05-31 06:20:44 +04:00
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-10-04 15:38:39 +04:00
if not bld.CONFIG_SET('USING_SYSTEM_PYTDB'):
bld.SAMBA_PYTHON('pytdb',
'pytdb.c',
deps='tdb',
enabled=not bld.env.disable_python,
realname='tdb.so',
cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION)
2010-03-17 09:20:02 +03:00
2010-04-13 14:13:00 +04:00
2010-04-04 16:11:30 +04:00
def test(ctx):
'''run tdb testsuite'''
2010-12-27 14:20:47 +03:00
import Utils, samba_utils, shutil
test_prefix = "%s/st" % (Utils.g_module.blddir)
shutil.rmtree(test_prefix, ignore_errors=True)
os.makedirs(test_prefix)
2011-02-21 08:46:58 +03:00
os.environ['TEST_DATA_PREFIX'] = test_prefix
2010-04-04 16:11:30 +04:00
cmd = os.path.join(Utils.g_module.blddir, 'tdbtorture')
2010-10-07 05:25:42 +04:00
ret = samba_utils.RUN_COMMAND(cmd)
print("testsuite returned %d" % ret)
sys.exit(ret)
2010-04-05 03:58:23 +04:00
def dist():
'''makes a tarball for distribution'''
samba_dist.dist()
2010-11-03 04:09:23 +03:00
def reconfigure(ctx):
'''reconfigure if config scripts have changed'''
import samba_utils
samba_utils.reconfigure(ctx)