10 # find the buildtools directory
12 while not os
.path
.exists(srcdir
+'/buildtools') and len(srcdir
.split('/')) < 5:
13 srcdir
= '../' + srcdir
14 sys
.path
.insert(0, srcdir
+ '/buildtools/wafsamba')
16 import wafsamba
, samba_dist
, Options
, Logs
18 samba_dist
.DIST_DIRS('lib/tdb:. lib/replace:lib/replace buildtools:buildtools')
21 opt
.BUILTIN_DEFAULT('replace')
22 opt
.BUNDLED_EXTENSION_DEFAULT('tdb', noextenion
='tdb')
23 opt
.RECURSE('lib/replace')
24 if opt
.IN_LAUNCH_DIR():
25 opt
.add_option('--disable-python',
26 help=("disable the pytdb module"),
27 action
="store_true", dest
='disable_python', default
=False)
31 conf
.RECURSE('lib/replace')
33 conf
.env
.standalone_tdb
= conf
.IN_LAUNCH_DIR()
35 if not conf
.env
.standalone_tdb
:
36 if conf
.CHECK_BUNDLED_SYSTEM('tdb', minversion
=VERSION
,
37 implied_deps
='replace'):
38 conf
.define('USING_SYSTEM_TDB', 1)
40 conf
.env
.disable_python
= getattr(Options
.options
, 'disable_python', False)
42 if conf
.env
.standalone_tdb
:
43 conf
.find_program('xsltproc', var
='XSLTPROC')
45 if not conf
.env
.disable_python
:
46 # also disable if we don't have the python libs installed
47 conf
.check_tool('python')
48 conf
.check_python_version((2,4,2))
49 conf
.check_python_headers()
50 if not conf
.env
.HAVE_PYTHON_H
:
51 Logs
.warn('Disabling pytdb as python devel libs not found')
52 conf
.env
.disable_python
= True
57 bld
.RECURSE('lib/replace')
59 COMMON_SRC
= bld
.SUBDIR('common',
60 '''check.c error.c tdb.c traverse.c
61 freelistcheck.c lock.c dump.c freelist.c
62 io.c open.c transaction.c''')
64 if not bld
.CONFIG_SET('USING_SYSTEM_TDB'):
65 bld
.SAMBA_LIBRARY('tdb',
69 abi_file
='ABI/tdb-%s.sigs' % VERSION
,
73 bld
.SAMBA_BINARY('tdbtorture',
78 bld
.SAMBA_BINARY('tdbdump',
82 bld
.SAMBA_BINARY('tdbbackup',
86 bld
.SAMBA_BINARY('tdbtool',
90 s4_build
= getattr(bld
.env
, '_SAMBA_BUILD_', 0) == 4
92 bld
.SAMBA_PYTHON('pytdb',
95 enabled
=not bld
.env
.disable_python
,
98 if bld
.env
.standalone_tdb
:
99 bld
.env
.PKGCONFIGDIR
= '${LIBDIR}/pkgconfig'
100 bld
.PKG_CONFIG_FILES('tdb.pc', vnum
=VERSION
)
101 bld
.INSTALL_FILES('${INCLUDEDIR}', 'include/tdb.h', flat
=True)
104 manpages
= 'manpages/tdbbackup.8 manpages/tdbdump.8 manpages/tdbtool.8'
106 bld
.env
.TDB_MAN_XSL
= 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
108 for m
in manpages
.split():
110 bld
.SAMBA_GENERATOR(m
,
113 rule
='${XSLTPROC} -o ${TGT} ${TDB_MAN_XSL} ${SRC}'
115 bld
.INSTALL_FILES('${MANDIR}/man8', m
, flat
=True)
119 '''run tdb testsuite'''
121 cmd
= os
.path
.join(Utils
.g_module
.blddir
, 'tdbtorture')
125 '''makes a tarball for distribution'''