ldb: Install pyldb-util as public library.
[Samba/vl.git] / source4 / lib / ldb / wscript
blob92f7846145cc821ac3de89491e785ab225a41adb
1 #!/usr/bin/env python
3 APPNAME = 'ldb'
4 VERSION = '0.9.17'
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, Options
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', noextension='ldb')
26 opt.RECURSE('lib/tdb')
27 opt.RECURSE('lib/tevent')
28 opt.RECURSE('lib/replace')
30 def configure(conf):
31 conf.RECURSE('lib/tdb')
32 conf.RECURSE('lib/tevent')
33 conf.RECURSE('lib/popt')
34 conf.RECURSE('lib/replace')
36 # where does the default LIBDIR end up? in conf.env somewhere?
38 conf.CONFIG_PATH('LDB_MODULESDIR', conf.SUBST_ENV_VAR('MODULESDIR') + '/ldb')
40 s4_build = getattr(conf.env, '_SAMBA_BUILD_', 0) == 4
42 conf.env.standalone_ldb = conf.IN_LAUNCH_DIR()
44 if not conf.env.standalone_ldb:
45 if conf.CHECK_BUNDLED_SYSTEM('ldb', minversion=VERSION,
46 onlyif='talloc tdb tevent',
47 implied_deps='replace talloc tdb tevent'):
48 conf.define('USING_SYSTEM_LDB', 1)
50 if conf.env.standalone_ldb:
51 conf.CHECK_XSLTPROC_MANPAGES()
53 # we need this for the ldap backend
54 if conf.CHECK_FUNCS_IN('ber_flush ldap_open ldap_initialize', 'lber ldap', headers='lber.h ldap.h'):
55 conf.env.ENABLE_LDAP_BACKEND = True
57 conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
59 conf.SAMBA_CONFIG_H()
61 def build(bld):
62 bld.RECURSE('lib/tdb')
63 bld.RECURSE('lib/tevent')
64 bld.RECURSE('lib/popt')
65 bld.RECURSE('lib/replace')
67 # in Samba4 we build some extra modules, and add extra
68 # capabilities to the ldb cmdline tools
69 s4_build = getattr(bld.env, '_SAMBA_BUILD_', 0) == 4
71 LDB_MAP_SRC = bld.SUBDIR('ldb_map',
72 'ldb_map.c ldb_map_inbound.c ldb_map_outbound.c')
74 COMMON_SRC = bld.SUBDIR('common',
75 '''ldb_modules.c ldb_ldif.c ldb_parse.c ldb_msg.c ldb_utf8.c
76 ldb_debug.c ldb_dn.c ldb_match.c ldb_options.c
77 ldb_attributes.c attrib_handlers.c ldb_controls.c qsort.c''')
79 if s4_build:
80 # this is only in the s4 build
81 bld.SAMBA_MODULE('ldb_ildap', 'ldb_ildap/ldb_ildap.c',
82 init_function='LDB_BACKEND(ldapi),LDB_BACKEND(ldaps),LDB_BACKEND(ldap)',
83 deps='talloc LIBCLI_LDAP CREDENTIALS auth_system_session',
84 aliases='ldb_ldaps ldb_ldapi ldb_ldap',
85 internal_module=False,
86 subsystem='ldb')
87 else:
88 # this is not included in the s4 build
89 bld.SAMBA_MODULE('ldb_ldap', 'ldb_ldap/ldb_ldap.c',
90 init_function='LDB_BACKEND(ldapi),LDB_BACKEND(ldaps),LDB_BACKEND(ldap)',
91 deps='talloc lber ldap',
92 enabled=bld.env.ENABLE_LDAP_BACKEND,
93 internal_module=False,
94 subsystem='ldb')
96 # we're not currently linking against the ldap libs, but ldb.pc.in
97 # has @LDAP_LIBS@
98 bld.env.LDAP_LIBS = ''
100 if not 'PACKAGE_VERSION' in bld.env:
101 bld.env.PACKAGE_VERSION = VERSION
102 bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
105 bld.SAMBA_LIBRARY('pyldb_util',
106 deps='ldb',
107 source='pyldb_util.c',
108 public_headers='pyldb.h',
109 vnum=VERSION,
110 pyext=True)
112 if not bld.CONFIG_SET('USING_SYSTEM_LDB'):
113 if Options.is_install:
114 modules_dir = bld.EXPAND_VARIABLES('${LDB_MODULESDIR}')
115 else:
116 # when we run from the source directory, we want to use
117 # the current modules, not the installed ones
118 modules_dir = os.path.join(os.getcwd(), 'bin/modules/ldb')
120 if bld.env.standalone_ldb:
121 # do ABI checking on the standalone ldb
122 abi_file = 'ABI/ldb-%s.sigs' % VERSION
123 abi_match = '!ldb_*module_ops !ldb_*backend_ops ldb_*'
124 else:
125 abi_file = None
126 abi_match = None
128 bld.SAMBA_LIBRARY('ldb',
129 COMMON_SRC + ' ' + LDB_MAP_SRC,
130 deps='tevent LIBLDB_MAIN',
131 includes='include',
132 public_headers='include/ldb.h include/ldb_errors.h '\
133 'include/ldb_module.h include/ldb_handlers.h',
134 pc_files='ldb.pc',
135 vnum=VERSION, manpages='man/ldb.3',
136 abi_file = abi_file,
137 abi_match = abi_match,
138 private_library=not bld.env.standalone_ldb)
140 bld.SAMBA_PYTHON('pyldb', 'pyldb.c',
141 deps='ldb pyldb_util',
142 realname='ldb.so',
143 cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION)
145 bld.SAMBA_MODULE('ldb_paged_results',
146 'modules/paged_results.c',
147 init_function='LDB_MODULE(paged_results)',
148 subsystem='ldb')
150 bld.SAMBA_MODULE('ldb_asq',
151 'modules/asq.c',
152 init_function='LDB_MODULE(asq)',
153 subsystem='ldb')
155 bld.SAMBA_MODULE('ldb_server_sort',
156 'modules/sort.c',
157 init_function='LDB_MODULE(server_sort)',
158 subsystem='ldb')
160 bld.SAMBA_MODULE('ldb_paged_searches',
161 'modules/paged_searches.c',
162 init_function='LDB_MODULE(paged_searches)',
163 enabled = s4_build,
164 subsystem='ldb')
166 bld.SAMBA_MODULE('ldb_rdn_name',
167 'modules/rdn_name.c',
168 init_function='LDB_MODULE(rdn_name)',
169 subsystem='ldb')
171 bld.SAMBA_MODULE('ldb_sample',
172 'tests/sample_module.c',
173 init_function='LDB_MODULE(sample)',
174 subsystem='ldb')
176 bld.SAMBA_MODULE('ldb_skel',
177 'modules/skel.c',
178 init_function='LDB_MODULE(skel)',
179 subsystem='ldb')
181 bld.SAMBA_MODULE('ldb_sqlite3',
182 'sqlite3/ldb_sqlite3.c',
183 init_function='LDB_BACKEND(sqlite3)',
184 enabled=False,
185 subsystem='ldb')
187 bld.SAMBA_MODULE('ldb_tdb',
188 bld.SUBDIR('ldb_tdb',
189 '''ldb_tdb.c ldb_pack.c ldb_search.c ldb_index.c
190 ldb_cache.c ldb_tdb_wrap.c'''),
191 init_function='LDB_BACKEND(tdb)',
192 deps='tdb',
193 subsystem='ldb')
195 # have a separate subsystem for common/ldb.c, so it can rebuild
196 # for install with a different -DLDB_MODULESDIR=
197 bld.SAMBA_SUBSYSTEM('LIBLDB_MAIN',
198 'common/ldb.c',
199 deps='tevent',
200 includes='include',
201 cflags='-DLDB_MODULESDIR=\"%s\"' % modules_dir)
203 if s4_build:
204 extra_cmdline_deps = ' LDBSAMBA POPT_SAMBA POPT_CREDENTIALS ' \
205 'LIBCMDLINE_CREDENTIALS gensec'
206 else:
207 extra_cmdline_deps = ''
209 bld.SAMBA_SUBSYSTEM('LIBLDB_CMDLINE',
210 'tools/ldbutil.c tools/cmdline.c',
211 'ldb dl popt' + extra_cmdline_deps)
213 LDB_TOOLS='ldbadd ldbsearch ldbdel ldbmodify ldbedit ldbrename'
214 for t in LDB_TOOLS.split():
215 bld.SAMBA_BINARY(t, 'tools/%s.c' % t, deps='LIBLDB_CMDLINE',
216 manpages='man/%s.1' % t)
218 # ldbtest doesn't get installed
219 bld.SAMBA_BINARY('ldbtest', 'tools/ldbtest.c', deps='LIBLDB_CMDLINE',
220 install=False)
223 def test(ctx):
224 '''run ldb testsuite'''
225 import Utils, samba_utils
226 cmd = 'tests/test-tdb.sh'
227 ret = samba_utils.RUN_COMMAND(cmd)
228 print("testsuite returned %d" % ret)
229 sys.exit(ret)
231 def dist():
232 '''makes a tarball for distribution'''
233 samba_dist.dist()