diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-11-01 18:43:46 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-11-01 18:55:20 +1100 |
commit | fd8815335d1295d3d0b9f5e7870f4ed364b1dd3b (patch) | |
tree | 608915b5e3a651e3cf9df9de26106e11821e79ec /source4/lib/ldb-samba/wscript_build | |
parent | cdf19ec5e2310a2f41e73fbb4655da288b88edfc (diff) | |
download | samba-fd8815335d1295d3d0b9f5e7870f4ed364b1dd3b.tar.gz samba-fd8815335d1295d3d0b9f5e7870f4ed364b1dd3b.tar.bz2 samba-fd8815335d1295d3d0b9f5e7870f4ed364b1dd3b.zip |
s4-ldb: added samba_extensions ldb module
this module hooks into the ldb command line processing, to add extra
command line options and initialisation of samba4 internal subsystems
such as gensec
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/lib/ldb-samba/wscript_build')
-rw-r--r-- | source4/lib/ldb-samba/wscript_build | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/source4/lib/ldb-samba/wscript_build b/source4/lib/ldb-samba/wscript_build index 7a07bc524e..0ddec30532 100644 --- a/source4/lib/ldb-samba/wscript_build +++ b/source4/lib/ldb-samba/wscript_build @@ -23,3 +23,21 @@ bld.SAMBA_SUBSYSTEM('ldbwrap', bld.SAMBA_PYTHON('python_samba__ldb', 'pyldb.c', deps='LDBSAMBA pyparam_util ldbwrap', realname='samba/_ldb.so') + +bld.SAMBA_MODULE('ldbsamba_extensions', + source='samba_extensions.c', + init_function='ldb_samba_extensions_init', + module_init_name='ldb_init_module', + subsystem='ldb', + deps='ldb LDBSAMBA POPT_SAMBA POPT_CREDENTIALS cmdline-credentials gensec', + internal_module=False) + + +# the s4-internal ldap backend +bld.SAMBA_MODULE('ldb_ildap', + source='ldb_ildap.c', + init_function='ldb_ildap_init', + module_init_name='ldb_init_module', + deps='talloc cli-ldap CREDENTIALS auth_system_session', + internal_module=False, + subsystem='ldb') |