2010-03-28 01:48:49 +03:00
#!/usr/bin/env python
2010-04-04 04:06:34 +04:00
APPNAME = 'ldb'
2010-03-17 12:32:15 +03:00
VERSION = '0.9.10'
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
# find the buildtools directory
buildtools = 'buildtools ../../buildtools'
for d in buildtools.split():
if os.path.exists(d):
srcdir = os.path.dirname(d) or '.'
break
2010-02-26 14:21:50 +03:00
sys.path.insert(0, srcdir+"/buildtools/wafsamba")
import wafsamba
2010-03-31 11:05:29 +04:00
2010-03-17 12:32:15 +03:00
LIBTDB_DIR= srcdir + '/lib/tdb'
LIBTEVENT_DIR= srcdir + '/lib/tevent'
2010-03-28 10:05:30 +04:00
LIBPOPT_DIR= srcdir + '/lib/popt'
2010-02-21 05:55:58 +03:00
def set_options(opt):
2010-03-28 08:42:28 +04:00
opt.BUILTIN_DEFAULT('replace')
opt.BUNDLED_EXTENSION_DEFAULT('ldb', noextenion='ldb')
2010-02-21 05:55:58 +03:00
opt.recurse(LIBTDB_DIR)
2010-03-17 12:32:15 +03:00
opt.recurse(LIBTEVENT_DIR)
2010-02-21 05:55:58 +03:00
def configure(conf):
2010-04-04 04:06:34 +04:00
conf.DIST_DIRS('''lib/ldb:. lib/replace:lib/replace lib/talloc:lib/talloc
lib/tdb:lib/tdb lib/tevent:lib/tevent buildtools:buildtools''')
2010-02-21 05:55:58 +03:00
conf.sub_config(LIBTDB_DIR)
2010-03-17 12:32:15 +03:00
conf.sub_config(LIBTEVENT_DIR)
2010-03-28 10:05:30 +04:00
conf.sub_config(LIBPOPT_DIR)
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-03-28 09:38:27 +04:00
2010-03-28 06:01:36 +04:00
if not s4_build:
2010-03-28 17:08:38 +04:00
if conf.CHECK_BUNDLED_SYSTEM('ldb', minversion=VERSION,
2010-03-29 15:27:17 +04:00
onlyif='talloc tdb tevent',
implied_deps='replace talloc tdb tevent'):
2010-03-28 09:38:27 +04:00
conf.define('USING_SYSTEM_LDB', 1)
2010-03-28 06:01:36 +04:00
# we need this for the ldap backend
conf.CHECK_FUNCS_IN('ber_flush ldap_open', 'lber ldap', headers='lber.h ldap.h', mandatory=True)
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-02-23 03:16:44 +03:00
bld.BUILD_SUBDIR(LIBTDB_DIR)
bld.BUILD_SUBDIR(LIBTEVENT_DIR)
2010-03-28 10:05:30 +04:00
bld.BUILD_SUBDIR(LIBPOPT_DIR)
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-03-17 12:12:16 +03:00
ldb_debug.c ldb_dn.c ldb_match.c
2010-02-21 05:55:58 +03:00
ldb_attributes.c attrib_handlers.c ldb_controls.c qsort.c''')
2010-03-17 12:12:16 +03:00
bld.SAMBA_SUBSYSTEM('LIBLDB',
includes='include',
deps='tevent',
source='common/ldb_modules.c')
bld.SAMBA_MODULE('ldb_asq',
'modules/asq.c',
init_function='LDB_MODULE(asq)',
subsystem='LIBLDB')
bld.SAMBA_MODULE('ldb_server_sort',
'modules/sort.c',
init_function='LDB_MODULE(server_sort)',
subsystem='LIBLDB')
bld.SAMBA_MODULE('ldb_paged_results',
'modules/paged_results.c',
init_function='LDB_MODULE(paged_results)',
subsystem='LIBLDB')
bld.SAMBA_MODULE('ldb_paged_searches',
'modules/paged_searches.c',
init_function='LDB_MODULE(paged_searches)',
enabled = s4_build,
subsystem='LIBLDB')
bld.SAMBA_MODULE('ldb_rdn_name',
'modules/rdn_name.c',
init_function='LDB_MODULE(rdn_name)',
subsystem='LIBLDB')
2010-03-15 10:03:43 +03:00
bld.SAMBA_MODULE('ldb_sample',
'tests/sample_module.c',
init_function='LDB_MODULE(sample)',
subsystem='LIBLDB')
2010-03-15 10:06:31 +03:00
bld.SAMBA_MODULE('ldb_skel',
'modules/skel.c',
init_function='LDB_MODULE(skel)',
subsystem='LIBLDB')
2010-03-17 12:12:16 +03:00
bld.SAMBA_MODULE('ldb_sqlite3',
'sqlite3/ldb_sqlite3.c',
init_function='LDB_BACKEND(sqlite3)',
enabled=False,
subsystem='LIBLDB')
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='LIBLDB')
2010-03-28 06:01:36 +04:00
# this is only in the s4 build
2010-03-17 12:12:16 +03:00
bld.SAMBA_MODULE('ldb_ildap', 'ldb_ildap/ldb_ildap.c',
init_function='LDB_BACKEND(ldapi),LDB_BACKEND(ldaps),LDB_BACKEND(ldap)',
deps='talloc LIBCLI_LDAP CREDENTIALS',
enabled=s4_build,
subsystem='LIBLDB')
2010-03-28 06:01:36 +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=not s4_build,
subsystem='LIBLDB')
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-03-17 12:12:16 +03:00
ldb_deps = 'tevent LIBLDB'
if s4_build:
ldb_deps += ' LDBSAMBA POPT_CREDENTIALS POPT_SAMBA LIBCMDLINE_CREDENTIALS gensec'
2010-02-21 05:55:58 +03: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-03-28 09:38:27 +04:00
bld.SAMBA_LIBRARY('ldb',
COMMON_SRC + ' ' + LDB_MAP_SRC,
deps=ldb_deps,
includes='include',
public_headers='include/ldb.h include/ldb_errors.h',
pc_files='ldb.pc',
2010-03-31 11:05:29 +04:00
cflags='-DLDB_MODULESDIR=\"%s\"' % modules_dir,
2010-03-28 09:38:27 +04:00
vnum=VERSION)
2010-03-17 12:32:15 +03:00
2010-03-17 12:12:16 +03:00
bld.SAMBA_SUBSYSTEM('LIBLDB_CMDLINE',
'tools/ldbutil.c tools/cmdline.c',
'ldb dl popt')
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-03-17 12:12:16 +03:00
bld.SAMBA_BINARY(t, 'tools/%s.c' % t, deps='LIBLDB_CMDLINE')
2010-03-19 11:50:57 +03:00
# ldbtest doesn't get installed
bld.SAMBA_BINARY('ldbtest', 'tools/ldbtest.c', deps='LIBLDB_CMDLINE', install=False)
2010-03-17 12:12:16 +03:00
if s4_build:
bld.SAMBA_PYTHON('pyldb', 'pyldb.c',
deps='ldb',
realname='ldb.so')
2010-03-27 13:29:42 +03:00