summaryrefslogtreecommitdiff
path: root/source3/winbindd/wscript_build
diff options
context:
space:
mode:
authorAtul Kulkarni <atul.kulkarni@in.ibm.com>2013-08-28 13:19:27 +0530
committerVolker Lendecke <vl@samba.org>2013-10-01 11:27:26 +0000
commitf80f43c772e8c5504111dd4274eb928e61fa56ed (patch)
treed52c0b3282190e4b0e82e08ab69c6f846d370379 /source3/winbindd/wscript_build
parent41450fe1c39ff56ff9384a3055b44f3310336abb (diff)
downloadsamba-f80f43c772e8c5504111dd4274eb928e61fa56ed.tar.gz
samba-f80f43c772e8c5504111dd4274eb928e61fa56ed.tar.bz2
samba-f80f43c772e8c5504111dd4274eb928e61fa56ed.zip
idmap_autorid: extract common code to separate file
This is in preparation of adding "net idmap autorid" functionality. Pair-Programmed-With: Michael Adam <obnox@samba.org> Signed-off-by: Atul Kulkarni <atul.kulkarni@in.ibm.com> Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org>
Diffstat (limited to 'source3/winbindd/wscript_build')
-rw-r--r--source3/winbindd/wscript_build6
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/winbindd/wscript_build b/source3/winbindd/wscript_build
index b318bec608..ea1131c8be 100644
--- a/source3/winbindd/wscript_build
+++ b/source3/winbindd/wscript_build
@@ -99,10 +99,14 @@ bld.SAMBA3_MODULE('idmap_hash',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('idmap_hash'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('idmap_hash'))
+bld.SAMBA3_SUBSYSTEM('IDMAP_AUTORID_TDB',
+ source='idmap_autorid_tdb.c',
+ deps='tdb')
+
bld.SAMBA3_MODULE('idmap_autorid',
subsystem='idmap',
source='idmap_autorid.c',
- deps='samba-util tdb IDMAP_TDB_COMMON',
+ deps='samba-util tdb IDMAP_TDB_COMMON IDMAP_AUTORID_TDB',
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('idmap_autorid'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('idmap_autorid'),