044305f374ebae7a88effd35943902110123208c
[samba.git] / lib / tdb / wscript
1 #!/usr/bin/env python
2
3 APPNAME = 'tdb'
4 VERSION = '1.2.2'
5
6 blddir = 'bin'
7
8 import sys, os
9
10 # find the buildtools directory
11 srcdir = '.'
12 while not os.path.exists(srcdir+'/buildtools') and len(srcdir.split('/')) < 5:
13     srcdir = '../' + srcdir
14 sys.path.insert(0, srcdir + '/buildtools/wafsamba')
15
16 import wafsamba, samba_dist, Options, Logs
17
18 samba_dist.DIST_DIRS('lib/tdb:. lib/replace:lib/replace buildtools:buildtools')
19
20 def set_options(opt):
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)
28
29
30 def configure(conf):
31     conf.RECURSE('lib/replace')
32
33     conf.env.standalone_tdb = conf.IN_LAUNCH_DIR()
34
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)
39
40     conf.env.disable_python = getattr(Options.options, 'disable_python', False)
41
42     if conf.env.standalone_tdb:
43         conf.find_program('xsltproc', var='XSLTPROC')
44
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(mandatory=False)
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
53
54     conf.SAMBA_CONFIG_H()
55
56 def build(bld):
57     bld.RECURSE('lib/replace')
58
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''')
63
64     if not bld.CONFIG_SET('USING_SYSTEM_TDB'):
65         bld.SAMBA_LIBRARY('tdb',
66                           COMMON_SRC,
67                           deps='replace rt',
68                           includes='include',
69                           abi_file='ABI/tdb-%s.sigs' % VERSION,
70                           abi_match='tdb_*',
71                           hide_symbols=True,
72                           vnum=VERSION, is_bundled=not bld.env.standalone_tdb)
73
74     bld.SAMBA_BINARY('tdbtorture',
75                      'tools/tdbtorture.c',
76                      'tdb',
77                      install=False)
78
79     bld.SAMBA_BINARY('tdbdump',
80                      'tools/tdbdump.c',
81                      'tdb', manpages='manpages/tdbdump.8')
82
83     bld.SAMBA_BINARY('tdbbackup',
84                      'tools/tdbbackup.c',
85                      'tdb',
86                                          manpages='manpages/tdbbackup.8')
87
88     bld.SAMBA_BINARY('tdbtool',
89                      'tools/tdbtool.c',
90                      'tdb', manpages='manpages/tdbtool.8')
91
92     s4_build = getattr(bld.env, '_SAMBA_BUILD_', 0) == 4
93
94     bld.SAMBA_PYTHON('pytdb',
95                      'pytdb.c',
96                      deps='tdb',
97                      enabled=not bld.env.disable_python,
98                      realname='tdb.so')
99
100     if bld.env.standalone_tdb:
101         bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
102         bld.PKG_CONFIG_FILES('tdb.pc', vnum=VERSION)
103         bld.INSTALL_FILES('${INCLUDEDIR}', 'include/tdb.h', flat=True)
104
105
106 def test(ctx):
107     '''run tdb testsuite'''
108     import Utils
109     cmd = os.path.join(Utils.g_module.blddir, 'tdbtorture')
110     os.system(cmd)
111
112 def dist():
113     '''makes a tarball for distribution'''
114     samba_dist.dist()