From 1e28aa147f23439273d892c1223969091b3ca90a Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 7 Jun 2012 14:19:43 +1000 Subject: build: Add missing deps and make MESSAGING a private library To remove finddcs_nbt these missing deps need to be added. These subsystems linked to to implicit dependencies provided by finddcs. Due to the new arrangmenet of subsystems, MESSAGING needs to be a private library to avoid being a source of duplicate symbols. Andrew Bartlett --- source4/lib/messaging/wscript_build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source4/lib/messaging/wscript_build') diff --git a/source4/lib/messaging/wscript_build b/source4/lib/messaging/wscript_build index 38f1fab331..4f352a7564 100644 --- a/source4/lib/messaging/wscript_build +++ b/source4/lib/messaging/wscript_build @@ -1,9 +1,10 @@ #!/usr/bin/env python -bld.SAMBA_SUBSYSTEM('MESSAGING', +bld.SAMBA_LIBRARY('MESSAGING', source='messaging.c', - public_deps='samba-util tdb-wrap NDR_IRPC UNIX_PRIVS util_tdb cluster ndr samba_socket dcerpc' + public_deps='samba-util tdb-wrap NDR_IRPC UNIX_PRIVS util_tdb cluster ndr samba_socket dcerpc', + private_library=True ) -- cgit