diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-11 20:33:31 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-11 19:14:58 +0000 |
commit | ab9d459b6171a51fcadf1cbe68d3d05d2d50c850 (patch) | |
tree | 804f86af706540d3ba6ea57f6347090e527501ad /source4/dsdb | |
parent | 6756ec294fd4049976c7e42e0eda79089462aa4c (diff) | |
download | samba-ab9d459b6171a51fcadf1cbe68d3d05d2d50c850.tar.gz samba-ab9d459b6171a51fcadf1cbe68d3d05d2d50c850.tar.bz2 samba-ab9d459b6171a51fcadf1cbe68d3d05d2d50c850.zip |
dsdb: Build some more modules as .so files.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Mon Oct 11 19:14:58 UTC 2010 on sn-devel-104
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/wscript_build | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/wscript_build b/source4/dsdb/samdb/ldb_modules/wscript_build index 57a9f77ef9..09197cb05a 100644 --- a/source4/dsdb/samdb/ldb_modules/wscript_build +++ b/source4/dsdb/samdb/ldb_modules/wscript_build @@ -40,7 +40,7 @@ bld.SAMBA_MODULE('ldb_objectguid', source='objectguid.c', subsystem='ldb', init_function='LDB_MODULE(objectguid)', - internal_module=not bld.CONFIG_SET('USING_SYSTEM_LDB'), + internal_module=False, deps='SAMDB talloc LIBEVENTS LIBNDR' ) @@ -330,7 +330,7 @@ bld.SAMBA_MODULE('ldb_acl', source='acl.c', subsystem='ldb', init_function='LDB_MODULE(acl)', - internal_module=not bld.CONFIG_SET('USING_SYSTEM_LDB'), + internal_module=False, deps='talloc LIBEVENTS LIBSECURITY SAMDB DSDB_MODULE_HELPERS DSDB_MODULE_HELPER_SCHEMA' ) @@ -338,15 +338,15 @@ bld.SAMBA_MODULE('ldb_acl', bld.SAMBA_MODULE('ldb_lazy_commit', source='lazy_commit.c', subsystem='ldb', - internal_module=not bld.CONFIG_SET('USING_SYSTEM_LDB'), + internal_module=False, init_function='LDB_MODULE(lazy_commit)', deps='SAMDB' ) bld.SAMBA_MODULE('ldb_aclread', - source='acl_read.c', - subsystem='ldb', - init_function='LDB_MODULE(aclread)', - internal_module=not bld.CONFIG_SET('USING_SYSTEM_LDB'), - deps='talloc LIBEVENTS LIBSECURITY SAMDB' - ) + source='acl_read.c', + subsystem='ldb', + init_function='LDB_MODULE(aclread)', + internal_module=False, + deps='talloc LIBEVENTS LIBSECURITY SAMDB', + ) |