2010-03-28 01:48:49 +03:00
#!/usr/bin/env python
2010-04-04 04:06:34 +04:00
APPNAME = 'ldb'
2010-09-28 10:15:55 +04:00
VERSION = '0.9.14'
2010-02-21 05:55:58 +03:00
2010-03-17 12:32:15 +03:00
blddir = 'bin'
2010-04-04 04:18:39 +04:00
import sys, os
2010-04-04 07:16:49 +04:00
2010-04-04 04:18:39 +04:00
# find the buildtools directory
2010-04-04 07:16:49 +04:00
srcdir = '.'
while not os.path.exists(srcdir+'/buildtools') and len(srcdir.split('/')) < 5:
srcdir = '../' + srcdir
sys.path.insert(0, srcdir + '/buildtools/wafsamba')
2010-04-04 04:18:39 +04:00
2010-04-04 05:00:42 +04:00
import wafsamba, samba_dist
2010-04-05 03:58:23 +04:00
samba_dist.DIST_DIRS('''source4/lib/ldb:. lib/replace:lib/replace lib/talloc:lib/talloc
lib/tdb:lib/tdb lib/tevent:lib/tevent lib/popt:lib/popt
buildtools:buildtools''')
2010-02-26 14:21:50 +03:00
2010-03-31 11:05:29 +04:00
2010-02-21 05:55:58 +03:00
def set_options(opt):
2010-03-28 08:42:28 +04:00
opt.BUILTIN_DEFAULT('replace')
2010-06-19 14:10:29 +04:00
opt.BUNDLED_EXTENSION_DEFAULT('ldb', noextension='ldb')
2010-04-04 07:16:49 +04:00
opt.RECURSE('lib/tdb')
opt.RECURSE('lib/tevent')
2010-09-23 04:15:38 +04:00
opt.RECURSE('lib/replace')
2010-02-21 05:55:58 +03:00
def configure(conf):
2010-04-04 07:16:49 +04:00
conf.RECURSE('lib/tdb')
conf.RECURSE('lib/tevent')
conf.RECURSE('lib/popt')
2010-09-23 04:15:38 +04:00
conf.RECURSE('lib/replace')
2010-04-04 07:16:49 +04:00
2010-03-17 13:53:29 +03:00
# where does the default LIBDIR end up? in conf.env somewhere?
#
2010-03-23 01:29:51 +03:00
conf.CONFIG_PATH('LDB_MODULESDIR', conf.SUBST_ENV_VAR('MODULESDIR') + '/ldb')
2010-03-28 06:01:36 +04:00
s4_build = getattr(conf.env, '_SAMBA_BUILD_', 0) == 4
2010-04-13 15:33:04 +04:00
conf.env.standalone_ldb = conf.IN_LAUNCH_DIR()
2010-03-28 09:38:27 +04:00
2010-05-31 06:48:00 +04:00
if not conf.env.standalone_ldb:
if conf.CHECK_BUNDLED_SYSTEM('ldb', minversion=VERSION,
onlyif='talloc tdb tevent',
implied_deps='replace talloc tdb tevent'):
conf.define('USING_SYSTEM_LDB', 1)
if conf.env.standalone_ldb:
2010-06-24 10:03:02 +04:00
conf.CHECK_XSLTPROC_MANPAGES()
2010-05-31 06:48:00 +04:00
2010-05-31 14:51:58 +04:00
# we need this for the ldap backend
if conf.CHECK_FUNCS_IN('ber_flush ldap_open ldap_initialize', 'lber ldap', headers='lber.h ldap.h'):
conf.env.ENABLE_LDAP_BACKEND = True
2010-03-28 06:01:36 +04:00
2010-03-29 10:20:39 +04:00
conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
2010-02-21 05:55:58 +03:00
conf.SAMBA_CONFIG_H()
def build(bld):
2010-04-04 07:16:49 +04:00
bld.RECURSE('lib/tdb')
bld.RECURSE('lib/tevent')
bld.RECURSE('lib/popt')
2010-09-23 04:15:38 +04:00
bld.RECURSE('lib/replace')
2010-02-21 05:55:58 +03:00
2010-03-17 12:12:16 +03:00
# in Samba4 we build some extra modules, and add extra
# capabilities to the ldb cmdline tools
s4_build = getattr(bld.env, '_SAMBA_BUILD_', 0) == 4
2010-02-21 05:55:58 +03:00
LDB_MAP_SRC = bld.SUBDIR('ldb_map',
'ldb_map.c ldb_map_inbound.c ldb_map_outbound.c')
COMMON_SRC = bld.SUBDIR('common',
'''ldb.c ldb_ldif.c ldb_parse.c ldb_msg.c ldb_utf8.c
2010-07-06 09:35:16 +04:00
ldb_debug.c ldb_dn.c ldb_match.c ldb_modules.c ldb_options.c
2010-02-21 05:55:58 +03:00
ldb_attributes.c attrib_handlers.c ldb_controls.c qsort.c''')
2010-06-15 02:59:49 +04:00
if s4_build:
2010-06-20 13:49:08 +04:00
builtin_ildap = not bld.CONFIG_SET('USING_SYSTEM_LDB')
2010-06-15 02:59:49 +04:00
# this is only in the s4 build
bld.SAMBA_MODULE('ldb_ildap', 'ldb_ildap/ldb_ildap.c',
init_function='LDB_BACKEND(ldapi),LDB_BACKEND(ldaps),LDB_BACKEND(ldap)',
2010-10-03 08:58:39 +04:00
deps='talloc LIBCLI_LDAP CREDENTIALS auth_system_session',
2010-09-04 19:59:48 +04:00
aliases='ldb_ldaps ldb_ldapi ldb_ldap',
2010-06-20 13:49:08 +04:00
internal_module=builtin_ildap,
2010-06-15 02:59:49 +04:00
subsystem='ldb')
else:
2010-06-20 13:49:08 +04:00
builtin_ildap = False
2010-06-15 02:59:49 +04:00
# this is not included in the s4 build
bld.SAMBA_MODULE('ldb_ldap', 'ldb_ldap/ldb_ldap.c',
init_function='LDB_BACKEND(ldapi),LDB_BACKEND(ldaps),LDB_BACKEND(ldap)',
deps='talloc lber ldap',
enabled=bld.env.ENABLE_LDAP_BACKEND,
subsystem='ldb')
2010-03-28 06:01:36 +04:00
2010-03-27 13:29:42 +03:00
# we're not currently linking against the ldap libs, but ldb.pc.in
# has @LDAP_LIBS@
bld.env.LDAP_LIBS = ''
if not 'PACKAGE_VERSION' in bld.env:
bld.env.PACKAGE_VERSION = VERSION
bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
2010-06-20 13:49:08 +04:00
if builtin_ildap:
abi_file = 'ABI/ldb-ildap-%s.sigs' % VERSION
else:
abi_file = 'ABI/ldb-%s.sigs' % VERSION
2010-02-21 05:55:58 +03:00
2010-06-16 22:14:46 +04:00
bld.SAMBA_SUBSYSTEM('pyldb_util', deps='ldb',
source='pyldb_util.c', needs_python=True)
2010-05-31 20:12:05 +04:00
2010-03-28 09:38:27 +04:00
if not bld.CONFIG_SET('USING_SYSTEM_LDB'):
2010-03-31 11:05:29 +04:00
modules_dir = bld.EXPAND_VARIABLES('${LDB_MODULESDIR}')
2010-06-20 18:13:38 +04:00
if bld.env.standalone_ldb:
bld.SAMBA_LIBRARY('ldb',
COMMON_SRC + ' ' + LDB_MAP_SRC,
deps='tevent',
includes='include',
public_headers='include/ldb.h include/ldb_errors.h '\
'include/ldb_module.h include/ldb_handlers.h',
pc_files='ldb.pc',
cflags='-DLDB_MODULESDIR=\"%s\"' % modules_dir,
abi_file=abi_file,
abi_match='!ldb_*module_ops !ldb_*backend_ops ldb_*',
vnum=VERSION, manpages='man/ldb.3',
is_bundled=not bld.env.standalone_ldb)
else:
bld.SAMBA_LIBRARY('ldb',
COMMON_SRC + ' ' + LDB_MAP_SRC,
deps='tevent',
includes='include',
public_headers='include/ldb.h include/ldb_errors.h '\
'include/ldb_module.h include/ldb_handlers.h',
pc_files='ldb.pc',
cflags='-DLDB_MODULESDIR=\"%s\"' % modules_dir,
vnum=VERSION, manpages='man/ldb.3',
is_bundled=not bld.env.standalone_ldb)
2010-03-17 12:32:15 +03:00
2010-05-31 18:05:41 +04:00
bld.SAMBA_PYTHON('pyldb', 'pyldb.c',
2010-05-31 20:12:05 +04:00
deps='ldb pyldb_util',
2010-10-05 02:36:21 +04:00
realname='ldb.so',
cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION)
2010-05-31 18:05:41 +04:00
2010-06-15 02:59:49 +04:00
bld.SAMBA_MODULE('ldb_paged_results',
'modules/paged_results.c',
init_function='LDB_MODULE(paged_results)',
subsystem='ldb')
bld.SAMBA_MODULE('ldb_asq',
'modules/asq.c',
init_function='LDB_MODULE(asq)',
subsystem='ldb')
bld.SAMBA_MODULE('ldb_server_sort',
'modules/sort.c',
init_function='LDB_MODULE(server_sort)',
subsystem='ldb')
bld.SAMBA_MODULE('ldb_paged_searches',
'modules/paged_searches.c',
init_function='LDB_MODULE(paged_searches)',
enabled = s4_build,
subsystem='ldb')
bld.SAMBA_MODULE('ldb_rdn_name',
'modules/rdn_name.c',
init_function='LDB_MODULE(rdn_name)',
subsystem='ldb')
bld.SAMBA_MODULE('ldb_sample',
'tests/sample_module.c',
init_function='LDB_MODULE(sample)',
subsystem='ldb')
bld.SAMBA_MODULE('ldb_skel',
'modules/skel.c',
init_function='LDB_MODULE(skel)',
subsystem='ldb')
bld.SAMBA_MODULE('ldb_sqlite3',
'sqlite3/ldb_sqlite3.c',
init_function='LDB_BACKEND(sqlite3)',
enabled=False,
subsystem='ldb')
bld.SAMBA_MODULE('ldb_tdb',
bld.SUBDIR('ldb_tdb',
'''ldb_tdb.c ldb_pack.c ldb_search.c ldb_index.c
ldb_cache.c ldb_tdb_wrap.c'''),
init_function='LDB_BACKEND(tdb)',
deps='tdb',
subsystem='ldb')
2010-05-31 18:05:41 +04:00
if s4_build:
2010-06-15 02:59:49 +04:00
extra_cmdline_deps = ' LDBSAMBA POPT_SAMBA POPT_CREDENTIALS ' \
2010-05-31 20:12:05 +04:00
'LIBCMDLINE_CREDENTIALS gensec'
2010-06-15 02:59:49 +04:00
else:
extra_cmdline_deps = ''
2010-05-31 18:05:41 +04:00
2010-03-17 12:12:16 +03:00
bld.SAMBA_SUBSYSTEM('LIBLDB_CMDLINE',
'tools/ldbutil.c tools/cmdline.c',
2010-05-31 18:05:41 +04:00
'ldb dl popt' + extra_cmdline_deps)
2010-03-17 12:12:16 +03:00
2010-03-19 11:50:57 +03:00
LDB_TOOLS='ldbadd ldbsearch ldbdel ldbmodify ldbedit ldbrename'
2010-03-17 12:32:15 +03:00
for t in LDB_TOOLS.split():
2010-05-31 14:17:33 +04:00
bld.SAMBA_BINARY(t, 'tools/%s.c' % t, deps='LIBLDB_CMDLINE',
2010-05-31 15:51:49 +04:00
manpages='man/%s.1' % t)
2010-03-17 12:12:16 +03:00
2010-03-19 11:50:57 +03:00
# ldbtest doesn't get installed
2010-05-31 14:17:33 +04:00
bld.SAMBA_BINARY('ldbtest', 'tools/ldbtest.c', deps='LIBLDB_CMDLINE',
2010-05-31 15:51:49 +04:00
install=False)
2010-03-19 11:50:57 +03:00
2010-04-04 16:11:30 +04:00
def test(ctx):
'''run ldb testsuite'''
import Utils
cmd = 'tests/test-tdb.sh'
os.system(cmd)
2010-04-05 03:58:23 +04:00
def dist():
'''makes a tarball for distribution'''
samba_dist.dist()