summaryrefslogtreecommitdiffstats
path: root/lib/tdb2/wscript
blob: 386768f0fcb8b768679d3d444d32572b19af255b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python

APPNAME = 'tdb'
VERSION = '2.0-alpha'

blddir = 'bin'

import sys, os

# find the buildtools directory
srcdir = '.'
while not os.path.exists(srcdir+'/buildtools') and len(srcdir.split('/')) < 5:
    srcdir = '../' + srcdir
sys.path.insert(0, srcdir + '/buildtools/wafsamba')

import wafsamba, samba_dist, Options, Logs

samba_dist.DIST_DIRS('lib/tdb2:. lib/replace:lib/replace buildtools:buildtools')

def set_options(opt):
    opt.BUILTIN_DEFAULT('replace')
    opt.PRIVATE_EXTENSION_DEFAULT('tdb2', noextension='tdb2')
    opt.RECURSE('lib/replace')
    opt.add_option('--enable-tdb2-breaks-compat',
                   help=("Build tdb2 instead of tdb1 (BREAKS TDB1!) [False]"),
                   action="store_true", dest='BUILD_TDB2', default=False)
    if opt.IN_LAUNCH_DIR():
        opt.add_option('--disable-python',
                       help=("disable the pytdb module"),
                       action="store_true", dest='disable_python', default=False)

def configure(conf):
    if conf.env.BUILD_TDB2:
        conf.DEFINE('BUILD_TDB2', 1)
        conf.RECURSE('lib/replace')
        conf.RECURSE('lib/ccan')

        conf.env.standalone_tdb2 = conf.IN_LAUNCH_DIR()
        conf.env.disable_python = getattr(Options.options, 'disable_python', False)

#        if not conf.env.standalone_tdb2:
#            if conf.CHECK_BUNDLED_SYSTEM('tdb', minversion=VERSION,
#                                         implied_deps='replace'):
#                conf.define('USING_SYSTEM_TDB2', 1)

        conf.SAMBA_CONFIG_H()

def build(bld):
    if bld.env.BUILD_TDB2:
        bld.RECURSE('lib/replace')

        if bld.env.standalone_tdb2:
            bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
            bld.PKG_CONFIG_FILES('tdb2.pc', vnum=VERSION)
            bld.INSTALL_FILES('${INCLUDEDIR}', 'tdb2.h', flat=True)
            private_library = False
        else:
            private_library = True

        if not bld.CONFIG_SET('USING_SYSTEM_TDB2'):
            # FIXME: hide_symbols=True, abi_directory='ABI', abi_match='tdb_*',  vnum=VERSION,
            bld.SAMBA_LIBRARY('tdb',
                              '''check.c free.c hash.c io.c lock.c open.c
                                 summary.c tdb.c transaction.c traverse.c''',
                              deps='replace ccan',
                              private_library=private_library)

            bld.SAMBA_BINARY('tdb2torture',
                             'tools/tdb2torture.c',
                             'tdb',
                             install=False)

            bld.SAMBA_BINARY('tdb2tool',
                             'tools/tdb2tool.c',
                             'tdb')

            bld.SAMBA_BINARY('tdb2dump',
                             'tools/tdb2dump.c',
                             'tdb')

            bld.SAMBA_BINARY('tdb2restore',
                             'tools/tdb2restore.c',
                             'tdb')

        bld.SAMBA_PYTHON('pytdb',
                         'pytdb.c',
                         deps='tdb',
                         enabled=not bld.env.disable_python,
                         realname='tdb.so',
                         cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION)

def dist():
    '''makes a tarball for distribution'''
    samba_dist.dist()

def reconfigure(ctx):
    '''reconfigure if config scripts have changed'''
    import samba_utils
    samba_utils.reconfigure(ctx)