Don't use sigev_value.sival_int to just store the mid, use sigev_value.sival_ptr...
[Samba/ekacnet.git] / source4 / lib / ldb / wscript
blob50ad87494eefe3729f6fa7a092e7743c698efb7a
1 #!/usr/bin/env python
3 APPNAME = 'ldb'
4 VERSION = '0.9.11'
6 blddir = 'bin'
8 import sys, os
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')
16 import wafsamba, samba_dist
18 samba_dist.DIST_DIRS('''source4/lib/ldb:. lib/replace:lib/replace lib/talloc:lib/talloc
19 lib/tdb:lib/tdb lib/tevent:lib/tevent lib/popt:lib/popt
20 buildtools:buildtools''')
23 def set_options(opt):
24 opt.BUILTIN_DEFAULT('replace')
25 opt.BUNDLED_EXTENSION_DEFAULT('ldb', noextenion='ldb')
26 opt.RECURSE('lib/tdb')
27 opt.RECURSE('lib/tevent')
29 def configure(conf):
30 conf.RECURSE('lib/tdb')
31 conf.RECURSE('lib/tevent')
32 conf.RECURSE('lib/popt')
34 # where does the default LIBDIR end up? in conf.env somewhere?
36 conf.CONFIG_PATH('LDB_MODULESDIR', conf.SUBST_ENV_VAR('MODULESDIR') + '/ldb')
38 s4_build = getattr(conf.env, '_SAMBA_BUILD_', 0) == 4
40 conf.env.standalone_ldb = conf.IN_LAUNCH_DIR()
42 if not conf.env.standalone_ldb:
43 if conf.CHECK_BUNDLED_SYSTEM('ldb', minversion=VERSION,
44 onlyif='talloc tdb tevent',
45 implied_deps='replace talloc tdb tevent'):
46 conf.define('USING_SYSTEM_LDB', 1)
48 if conf.env.standalone_ldb:
49 conf.find_program('xsltproc', var='XSLTPROC')
51 # we need this for the ldap backend
52 if conf.CHECK_FUNCS_IN('ber_flush ldap_open ldap_initialize', 'lber ldap', headers='lber.h ldap.h'):
53 conf.env.ENABLE_LDAP_BACKEND = True
55 conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
57 conf.SAMBA_CONFIG_H()
59 def build(bld):
60 bld.RECURSE('lib/tdb')
61 bld.RECURSE('lib/tevent')
62 bld.RECURSE('lib/popt')
64 # in Samba4 we build some extra modules, and add extra
65 # capabilities to the ldb cmdline tools
66 s4_build = getattr(bld.env, '_SAMBA_BUILD_', 0) == 4
68 LDB_MAP_SRC = bld.SUBDIR('ldb_map',
69 'ldb_map.c ldb_map_inbound.c ldb_map_outbound.c')
71 COMMON_SRC = bld.SUBDIR('common',
72 '''ldb.c ldb_ldif.c ldb_parse.c ldb_msg.c ldb_utf8.c
73 ldb_debug.c ldb_dn.c ldb_match.c
74 ldb_attributes.c attrib_handlers.c ldb_controls.c qsort.c''')
76 bld.SAMBA_SUBSYSTEM('LIBLDB',
77 includes='include',
78 deps='tevent',
79 source='common/ldb_modules.c')
81 bld.SAMBA_MODULE('ldb_asq',
82 'modules/asq.c',
83 init_function='LDB_MODULE(asq)',
84 subsystem='LIBLDB')
86 bld.SAMBA_MODULE('ldb_server_sort',
87 'modules/sort.c',
88 init_function='LDB_MODULE(server_sort)',
89 subsystem='LIBLDB')
91 bld.SAMBA_MODULE('ldb_paged_results',
92 'modules/paged_results.c',
93 init_function='LDB_MODULE(paged_results)',
94 subsystem='LIBLDB')
96 bld.SAMBA_MODULE('ldb_paged_searches',
97 'modules/paged_searches.c',
98 init_function='LDB_MODULE(paged_searches)',
99 enabled = s4_build,
100 subsystem='LIBLDB')
102 bld.SAMBA_MODULE('ldb_rdn_name',
103 'modules/rdn_name.c',
104 init_function='LDB_MODULE(rdn_name)',
105 subsystem='LIBLDB')
107 bld.SAMBA_MODULE('ldb_sample',
108 'tests/sample_module.c',
109 init_function='LDB_MODULE(sample)',
110 subsystem='LIBLDB')
112 bld.SAMBA_MODULE('ldb_skel',
113 'modules/skel.c',
114 init_function='LDB_MODULE(skel)',
115 subsystem='LIBLDB')
117 bld.SAMBA_MODULE('ldb_sqlite3',
118 'sqlite3/ldb_sqlite3.c',
119 init_function='LDB_BACKEND(sqlite3)',
120 enabled=False,
121 subsystem='LIBLDB')
123 bld.SAMBA_MODULE('ldb_tdb',
124 bld.SUBDIR('ldb_tdb',
125 '''ldb_tdb.c ldb_pack.c ldb_search.c ldb_index.c
126 ldb_cache.c ldb_tdb_wrap.c'''),
127 init_function='LDB_BACKEND(tdb)',
128 deps='tdb',
129 subsystem='LIBLDB')
131 # this is only in the s4 build
132 bld.SAMBA_MODULE('ldb_ildap', 'ldb_ildap/ldb_ildap.c',
133 init_function='LDB_BACKEND(ldapi),LDB_BACKEND(ldaps),LDB_BACKEND(ldap)',
134 deps='talloc LIBCLI_LDAP CREDENTIALS',
135 enabled=s4_build,
136 subsystem='LIBLDB')
138 # this is not included in the s4 build
139 bld.SAMBA_MODULE('ldb_ldap', 'ldb_ldap/ldb_ldap.c',
140 init_function='LDB_BACKEND(ldapi),LDB_BACKEND(ldaps),LDB_BACKEND(ldap)',
141 deps='talloc lber ldap',
142 enabled=bld.env.ENABLE_LDAP_BACKEND,
143 subsystem='LIBLDB')
145 # we're not currently linking against the ldap libs, but ldb.pc.in
146 # has @LDAP_LIBS@
147 bld.env.LDAP_LIBS = ''
149 if not 'PACKAGE_VERSION' in bld.env:
150 bld.env.PACKAGE_VERSION = VERSION
151 bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
153 if s4_build:
154 abi_file='ABI/ldb-samba4-%s.sigs' % VERSION
155 else:
156 abi_file='ABI/ldb-%s.sigs' % VERSION
158 bld.SAMBA_PYTHON('pyldb_util', deps='ldb',
159 source='pyldb_util.c')
161 if not bld.CONFIG_SET('USING_SYSTEM_LDB'):
162 modules_dir = bld.EXPAND_VARIABLES('${LDB_MODULESDIR}')
163 bld.SAMBA_LIBRARY('ldb',
164 COMMON_SRC + ' ' + LDB_MAP_SRC,
165 deps='tevent LIBLDB',
166 includes='include',
167 public_headers='include/ldb.h include/ldb_errors.h '\
168 'include/ldb_module.h include/ldb_handlers.h',
169 pc_files='ldb.pc',
170 cflags='-DLDB_MODULESDIR=\"%s\"' % modules_dir,
171 abi_file=abi_file,
172 abi_match='!ldb_*module_ops !ldb_*backend_ops ldb_*',
173 vnum=VERSION, manpages='man/ldb.3',
174 is_bundled=not bld.env.standalone_ldb)
176 bld.SAMBA_PYTHON('pyldb', 'pyldb.c',
177 deps='ldb pyldb_util',
178 realname='ldb.so')
180 extra_cmdline_deps = ''
181 if s4_build:
182 extra_cmdline_deps += ' LDBSAMBA POPT_SAMBA POPT_CREDENTIALS ' \
183 'LIBCMDLINE_CREDENTIALS gensec'
185 bld.SAMBA_SUBSYSTEM('LIBLDB_CMDLINE',
186 'tools/ldbutil.c tools/cmdline.c',
187 'ldb dl popt' + extra_cmdline_deps)
189 LDB_TOOLS='ldbadd ldbsearch ldbdel ldbmodify ldbedit ldbrename'
190 for t in LDB_TOOLS.split():
191 bld.SAMBA_BINARY(t, 'tools/%s.c' % t, deps='LIBLDB_CMDLINE',
192 manpages='man/%s.1' % t)
194 # ldbtest doesn't get installed
195 bld.SAMBA_BINARY('ldbtest', 'tools/ldbtest.c', deps='LIBLDB_CMDLINE',
196 install=False)
199 def test(ctx):
200 '''run ldb testsuite'''
201 import Utils
202 cmd = 'tests/test-tdb.sh'
203 os.system(cmd)
205 def dist():
206 '''makes a tarball for distribution'''
207 samba_dist.dist()