diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-05-14 21:54:57 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-05-18 16:12:08 +0200 |
commit | baad855bcaad28d341867ae03c67e68e520a743a (patch) | |
tree | 9bfd60514d8e9602c3cd0b013c9794fcb32a9448 | |
parent | 30979f3ea1df7f81c44fb1d8b6a1a61777c8c72d (diff) | |
download | samba-baad855bcaad28d341867ae03c67e68e520a743a.tar.gz samba-baad855bcaad28d341867ae03c67e68e520a743a.tar.bz2 samba-baad855bcaad28d341867ae03c67e68e520a743a.zip |
build: Make msrpc3 a library
-rwxr-xr-x | source3/wscript_build | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index fe02dfcd0c..7e89745472 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -690,13 +690,14 @@ bld.SAMBA3_LIBRARY('nss_wins', realname='libnss_wins.so.2', vnum='2') -bld.SAMBA3_SUBSYSTEM('msrpc3', - source='${LIBMSRPC_SRC}', - deps='''ndr ndr-util ndr-standard +bld.SAMBA3_LIBRARY('msrpc3', + source='${LIBMSRPC_SRC}', + deps='''ndr ndr-util ndr-standard RPC_NDR_EPMAPPER NTLMSSP_COMMON COMMON_SCHANNEL LIBCLI_AUTH LIBTSOCKET KRB5_WRAP rpccommon LIBSMB''', - vars=locals()) + vars=locals(), + private_library=True) bld.SAMBA3_SUBSYSTEM('LIBMSRPC_GEN', source='', |