diff options
author | Günther Deschner <gd@samba.org> | 2010-11-30 17:46:56 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-11-30 18:13:17 +0100 |
commit | e80e5c5b8a88a23d3fdf11e52d5f3bef2cdeb31b (patch) | |
tree | 0fd5feb85680771278f2ebcc6ffa972497d71c80 /source3/wscript_build | |
parent | aaa31e7b22342157c9982107a6af67c06b01ef93 (diff) | |
download | samba-e80e5c5b8a88a23d3fdf11e52d5f3bef2cdeb31b.tar.gz samba-e80e5c5b8a88a23d3fdf11e52d5f3bef2cdeb31b.tar.bz2 samba-e80e5c5b8a88a23d3fdf11e52d5f3bef2cdeb31b.zip |
s3-waf: convert RPCCLI_EPMAPPER into a subsystem.
Guenther
Diffstat (limited to 'source3/wscript_build')
-rw-r--r-- | source3/wscript_build | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index bdabb0e957..a3bade353a 100644 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -61,10 +61,6 @@ LIBCLI_SAMR_SRC = 'rpc_client/cli_samr.c' LIBCLI_NETLOGON_SRC = 'rpc_client/cli_netlogon.c' -LIBCLI_EPMAPPER_SRC = ''' - ../librpc/gen_ndr/cli_epmapper.c - ../librpc/gen_ndr/ndr_epmapper_c.c''' - # this includes only the low level parse code, not stuff # that requires knowledge of security contexts REG_PARSE_PRS_SRC = '''registry/reg_parse_prs.c''' @@ -232,8 +228,7 @@ LIBMSRPC_SRC = ''' ../librpc/rpc/binding.c ../librpc/rpc/dcerpc_util.c librpc/rpc/dcerpc_helpers.c - ../librpc/rpc/binding_handle.c - ${LIBCLI_EPMAPPER_SRC}''' + ../librpc/rpc/binding_handle.c''' # # registry-related objects @@ -837,7 +832,8 @@ bld.SAMBA_LIBRARY('smbsharemodes', bld.SAMBA_SUBSYSTEM('LIBMSRPC', source='${LIBMSRPC_SRC}', - deps='ndr NDR_SECURITY NDR_DCERPC NDR_SCHANNEL', + deps='''ndr NDR_SECURITY NDR_DCERPC NDR_SCHANNEL + RPCCLI_EPMAPPER''', vars=locals()) bld.SAMBA_SUBSYSTEM('LIBMSRPC_GEN', @@ -1175,6 +1171,10 @@ bld.SAMBA_SUBSYSTEM('RPCCLI_EVENTLOG', source='../librpc/gen_ndr/cli_eventlog.c', public_deps='RPC_NDR_EVENTLOG') +bld.SAMBA_SUBSYSTEM('RPCCLI_EPMAPPER', + source='../librpc/gen_ndr/cli_epmapper.c', + public_deps='RPC_NDR_EPMAPPER') + bld.SAMBA_SUBSYSTEM('LIBCLI_SAMR', source=LIBCLI_SAMR_SRC, deps='RPCCLI_SAMR') |