diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-20 18:19:55 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:23 +1100 |
commit | 9a2c9c2fc264627494b16923f3055d4aa09ae835 (patch) | |
tree | f318d83cf5f4a2f7c23533292855c0f17c60d364 /source4/dsdb/wscript_build | |
parent | 8709c3c0f2695b199bb63fee27c6ae054d665209 (diff) | |
download | samba-9a2c9c2fc264627494b16923f3055d4aa09ae835.tar.gz samba-9a2c9c2fc264627494b16923f3055d4aa09ae835.tar.bz2 samba-9a2c9c2fc264627494b16923f3055d4aa09ae835.zip |
s4-dsdb: make SAMDB_COMMON into a private library
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/dsdb/wscript_build')
-rw-r--r-- | source4/dsdb/wscript_build | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source4/dsdb/wscript_build b/source4/dsdb/wscript_build index db2f38b1b1..6955eb49d3 100644 --- a/source4/dsdb/wscript_build +++ b/source4/dsdb/wscript_build @@ -11,11 +11,12 @@ bld.SAMBA_LIBRARY('SAMDB', ) -bld.SAMBA_SUBSYSTEM('SAMDB_COMMON', - source='common/util.c common/util_samr.c common/dsdb_dn.c common/dsdb_access.c ../../libds/common/flag_mapping.c', - autoproto='common/proto.h', - deps='ldb NDR_DRSBLOBS LIBCLI_LDAP_NDR UTIL_LDB LIBCLI_AUTH LIBTSOCKET samba_socket LIBSAMBA-HOSTCONFIG' - ) +bld.SAMBA_LIBRARY('SAMDB_COMMON', + source='common/util.c common/util_samr.c common/dsdb_dn.c common/dsdb_access.c ../../libds/common/flag_mapping.c', + autoproto='common/proto.h', + private_library=True, + deps='ldb NDR_DRSBLOBS UTIL_LDB LIBCLI_AUTH LIBSAMBA-HOSTCONFIG' + ) bld.SAMBA_SUBSYSTEM('SAMDB_SCHEMA', |