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
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''')
24 opt
.BUILTIN_DEFAULT('replace')
25 opt
.PRIVATE_EXTENSION_DEFAULT('ldb', noextension
='ldb')
26 opt
.RECURSE('lib/tdb')
27 opt
.RECURSE('lib/tevent')
28 opt
.RECURSE('lib/replace')
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 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)
47 if conf
.CHECK_BUNDLED_SYSTEM('pyldb-util', minversion
=VERSION
,
48 onlyif
='talloc tdb tevent ldb',
49 implied_deps
='replace talloc tdb tevent ldb'):
50 conf
.define('USING_SYSTEM_PYLDB_UTIL', 1)
52 if conf
.env
.standalone_ldb
:
53 conf
.CHECK_XSLTPROC_MANPAGES()
55 # we need this for the ldap backend
56 if conf
.CHECK_FUNCS_IN('ber_flush ldap_open ldap_initialize', 'lber ldap', headers
='lber.h ldap.h'):
57 conf
.env
.ENABLE_LDAP_BACKEND
= True
59 conf
.DEFINE('LDB_VERSION', VERSION
, quote
=True)
61 conf
.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags
=True)
63 # we don't want any libraries or modules to rely on runtime
64 # resolution of symbols
65 if sys
.platform
!= "openbsd4":
66 conf
.ADD_LDFLAGS('-Wl,-no-undefined', testflags
=True)
71 bld
.RECURSE('lib/tdb')
72 bld
.RECURSE('lib/tevent')
73 bld
.RECURSE('lib/popt')
74 bld
.RECURSE('lib/replace')
76 if bld
.env
.standalone_ldb
:
77 private_library
= False
79 private_library
= True
81 LDB_MAP_SRC
= bld
.SUBDIR('ldb_map',
82 'ldb_map.c ldb_map_inbound.c ldb_map_outbound.c')
84 COMMON_SRC
= bld
.SUBDIR('common',
85 '''ldb_modules.c ldb_ldif.c ldb_parse.c ldb_msg.c ldb_utf8.c
86 ldb_debug.c ldb_dn.c ldb_match.c ldb_options.c
87 ldb_attributes.c attrib_handlers.c ldb_controls.c qsort.c''')
89 bld
.SAMBA_MODULE('ldb_ldap', 'ldb_ldap/ldb_ldap.c',
90 init_function
='ldb_ldap_init',
91 module_init_name
='ldb_init_module',
92 deps
='talloc lber ldap ldb',
93 enabled
=bld
.env
.ENABLE_LDAP_BACKEND
,
94 internal_module
=False,
97 # we're not currently linking against the ldap libs, but ldb.pc.in
99 bld
.env
.LDAP_LIBS
= ''
101 if not 'PACKAGE_VERSION' in bld
.env
:
102 bld
.env
.PACKAGE_VERSION
= VERSION
103 bld
.env
.PKGCONFIGDIR
= '${LIBDIR}/pkgconfig'
105 if not bld
.CONFIG_SET('USING_SYSTEM_PYLDB_UTIL'):
106 bld
.SAMBA_LIBRARY('pyldb-util',
108 source
='pyldb_util.c',
109 public_headers
='pyldb.h',
111 private_library
=private_library
,
112 pc_files
='pyldb-util.pc',
115 if not bld
.CONFIG_SET('USING_SYSTEM_LDB'):
116 if Options
.is_install
:
117 modules_dir
= bld
.EXPAND_VARIABLES('${LDB_MODULESDIR}')
119 # when we run from the source directory, we want to use
120 # the current modules, not the installed ones
121 modules_dir
= os
.path
.join(os
.getcwd(), 'bin/modules/ldb')
123 abi_match
= '!ldb_*module_ops !ldb_*backend_ops ldb_*'
125 bld
.SAMBA_LIBRARY('ldb',
126 COMMON_SRC
+ ' ' + LDB_MAP_SRC
,
127 deps
='tevent LIBLDB_MAIN',
129 public_headers
='include/ldb.h include/ldb_errors.h '\
130 'include/ldb_module.h include/ldb_handlers.h',
133 private_library
=private_library
,
134 manpages
='man/ldb.3',
135 abi_directory
= 'ABI',
136 abi_match
= abi_match
)
139 bld
.SAMBA_PYTHON('pyldb', 'pyldb.c',
140 deps
='ldb pyldb-util',
142 cflags
='-DPACKAGE_VERSION=\"%s\"' % VERSION
)
144 bld
.SAMBA_MODULE('ldb_paged_results',
145 'modules/paged_results.c',
146 init_function
='ldb_paged_results_init',
147 module_init_name
='ldb_init_module',
148 internal_module
=False,
152 bld
.SAMBA_MODULE('ldb_asq',
154 init_function
='ldb_asq_init',
155 module_init_name
='ldb_init_module',
156 internal_module
=False,
160 bld
.SAMBA_MODULE('ldb_server_sort',
162 init_function
='ldb_server_sort_init',
163 internal_module
=False,
164 module_init_name
='ldb_init_module',
168 bld
.SAMBA_MODULE('ldb_paged_searches',
169 'modules/paged_searches.c',
170 init_function
='ldb_paged_searches_init',
171 internal_module
=False,
172 module_init_name
='ldb_init_module',
176 bld
.SAMBA_MODULE('ldb_rdn_name',
177 'modules/rdn_name.c',
178 init_function
='ldb_rdn_name_init',
179 internal_module
=False,
180 module_init_name
='ldb_init_module',
184 bld
.SAMBA_MODULE('ldb_sample',
185 'tests/sample_module.c',
186 init_function
='ldb_sample_init',
187 internal_module
=False,
188 module_init_name
='ldb_init_module',
192 bld
.SAMBA_MODULE('ldb_skel',
194 init_function
='ldb_skel_init',
195 internal_module
=False,
196 module_init_name
='ldb_init_module',
200 bld
.SAMBA_MODULE('ldb_sqlite3',
201 'sqlite3/ldb_sqlite3.c',
202 init_function
='ldb_sqlite3_init',
203 internal_module
=False,
204 module_init_name
='ldb_init_module',
209 bld
.SAMBA_MODULE('ldb_tdb',
210 bld
.SUBDIR('ldb_tdb',
211 '''ldb_tdb.c ldb_pack.c ldb_search.c ldb_index.c
212 ldb_cache.c ldb_tdb_wrap.c'''),
213 init_function
='ldb_tdb_init',
214 module_init_name
='ldb_init_module',
215 internal_module
=False,
219 # have a separate subsystem for common/ldb.c, so it can rebuild
220 # for install with a different -DLDB_MODULESDIR=
221 bld
.SAMBA_SUBSYSTEM('LIBLDB_MAIN',
225 cflags
=['-DLDB_MODULESDIR=\"%s\"' % modules_dir
])
227 LDB_TOOLS
='ldbadd ldbsearch ldbdel ldbmodify ldbedit ldbrename'
228 for t
in LDB_TOOLS
.split():
229 bld
.SAMBA_BINARY(t
, 'tools/%s.c' % t
, deps
='ldb-cmdline ldb',
230 manpages
='man/%s.1' % t
)
232 # ldbtest doesn't get installed
233 bld
.SAMBA_BINARY('ldbtest', 'tools/ldbtest.c', deps
='ldb-cmdline ldb',
236 bld
.SAMBA_LIBRARY('ldb-cmdline',
237 source
='tools/ldbutil.c tools/cmdline.c',
239 private_library
=True)
243 '''run ldb testsuite'''
244 import Utils
, samba_utils
, shutil
245 test_prefix
= "%s/st" % (Utils
.g_module
.blddir
)
246 shutil
.rmtree(test_prefix
, ignore_errors
=True)
247 os
.makedirs(test_prefix
)
248 os
.putenv('TEST_DATA_PREFIX', test_prefix
)
249 cmd
= 'tests/test-tdb.sh'
250 ret
= samba_utils
.RUN_COMMAND(cmd
)
251 print("testsuite returned %d" % ret
)
252 # FIXME: Run python testsuite
256 '''makes a tarball for distribution'''
259 def reconfigure(ctx
):
260 '''reconfigure if config scripts have changed'''
262 samba_utils
.reconfigure(ctx
)