diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-05-07 00:50:04 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-05-08 19:00:28 +0200 |
commit | a47c7f6b4cfc8ce271cfd5addbf8f901d9ab3c6e (patch) | |
tree | fe1974ac7683142f8476db829c441f6cbc99c242 /source3/wscript | |
parent | 25cfa29e29bdbb6c84bd85ea02ec542228ae585f (diff) | |
download | samba-a47c7f6b4cfc8ce271cfd5addbf8f901d9ab3c6e.tar.gz samba-a47c7f6b4cfc8ce271cfd5addbf8f901d9ab3c6e.tar.bz2 samba-a47c7f6b4cfc8ce271cfd5addbf8f901d9ab3c6e.zip |
s3-passdb: added pdb_samba4
This uses direct LDB operations and calls to the dsdb library to allow
passdb operations (such as pdbedit and smbpasswd) offline, and uses
transactions internally for database consistency.
Pair-Programmed-With: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/wscript')
-rw-r--r-- | source3/wscript | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/wscript b/source3/wscript index 4d30592d2f..ee4a98c85d 100644 --- a/source3/wscript +++ b/source3/wscript @@ -1699,6 +1699,9 @@ main() { default_static_modules.extend(TO_LIST('pdb_ads auth_netlogond')) default_shared_modules.extend(TO_LIST('charset_weird perfcount_test')) + if conf.env.toplevel_build: + default_static_modules.extend(TO_LIST('pdb_samba4 auth_samba4')) + if Options.options.with_acl_support and conf.CONFIG_SET('HAVE_POSIX_ACLS'): default_static_modules.extend(TO_LIST('vfs_posixacl')) |