From 56640a8501625d29745269fcddc1980c6b751a2a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 21 Oct 2010 17:12:31 +1100 Subject: s4-rpc_server: split out DCERPC_SHARE as a separate subsystem this avoids a problem with -Wl,-no-undefined in the ntvfs layer Pair-Programmed-With: Andrew Bartlett --- source4/rpc_server/wscript_build | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'source4/rpc_server/wscript_build') diff --git a/source4/rpc_server/wscript_build b/source4/rpc_server/wscript_build index a041003f5e..4fcdcef0c6 100644 --- a/source4/rpc_server/wscript_build +++ b/source4/rpc_server/wscript_build @@ -1,11 +1,17 @@ #!/usr/bin/env python +bld.SAMBA_SUBSYSTEM('DCERPC_SHARE', + source='common/server_info.c common/share_info.c', + autoproto='common/share.h', + deps='ldb' + ) + bld.SAMBA_SUBSYSTEM('DCERPC_COMMON', - source='common/server_info.c common/share_info.c common/forward.c', + source='common/forward.c', autoproto='common/proto.h', public_headers='common/common.h', header_path='dcerpc_server', - deps='ldb dcerpc_server' + deps='ldb DCERPC_SHARE' ) -- cgit