summaryrefslogtreecommitdiffstats
path: root/source3/passdb/wscript_build
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-06-03 10:54:06 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-06-16 08:18:10 +0200
commit9c715da1cbc256b9ae9298618c92807592607c9b (patch)
tree6541a67f90a5f89264866f7196488f8b50095cb5 /source3/passdb/wscript_build
parentd949736f8dc02eec180723a55f4604b7b3aa83d8 (diff)
downloadsamba-9c715da1cbc256b9ae9298618c92807592607c9b.tar.gz
samba-9c715da1cbc256b9ae9298618c92807592607c9b.tar.xz
samba-9c715da1cbc256b9ae9298618c92807592607c9b.zip
s3-passdb: Remove pdb_ads
pdb_ads was an important module in the development of the combined Samba 4.0, and was the first module to show that standard samba3 tools such as smbpasswd can be made to operate on the sam.ldb. We now have pdb_samba4, which operates directly on the sam.ldb, rather than via ldapi://, which uses transactions and which is supported and tested as part of the official Samba 4.0 release configuration. This module is not as complete (for example, it does not honour the idmap configuration) and requires that the samba binary be running to operate. Andrew Bartlett
Diffstat (limited to 'source3/passdb/wscript_build')
-rw-r--r--source3/passdb/wscript_build9
1 files changed, 0 insertions, 9 deletions
diff --git a/source3/passdb/wscript_build b/source3/passdb/wscript_build
index 59a7f80697b..2a39b10eeac 100644
--- a/source3/passdb/wscript_build
+++ b/source3/passdb/wscript_build
@@ -2,7 +2,6 @@
PDB_TDBSAM_SRC = 'pdb_tdb.c'
PDB_LDAP_SRC = 'pdb_ldap.c pdb_nds.c pdb_ipa.c pdb_ldap_util.c'
-PDB_ADS_SRC = 'pdb_ads.c'
PDB_SMBPASSWD_SRC = 'pdb_smbpasswd.c'
PDB_WBC_SAM_SRC = 'pdb_wbc_sam.c'
@@ -22,14 +21,6 @@ bld.SAMBA3_MODULE('pdb_ldap',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('pdb_ldap'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('pdb_ldap') and bld.env.HAVE_LDAP)
-bld.SAMBA3_MODULE('pdb_ads',
- subsystem='pdb',
- source=PDB_ADS_SRC,
- deps='cli-ldap-common TLDAP',
- init_function='',
- internal_module=bld.SAMBA3_IS_STATIC_MODULE('pdb_ads'),
- enabled=bld.SAMBA3_IS_ENABLED_MODULE('pdb_ads'))
-
bld.SAMBA3_MODULE('pdb_smbpasswd',
subsystem='pdb',
source=PDB_SMBPASSWD_SRC,