From 5adf85e6afa949f8e636327bb3446aa4f41948a7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 6 Apr 2011 14:29:34 +1000 Subject: tstream: make npa_tstream a private library this prevents symbol duplication of the npa_tstream symbols Pair-Programmed-With: Andrew Bartlett --- libcli/named_pipe_auth/wscript_build | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'libcli/named_pipe_auth') diff --git a/libcli/named_pipe_auth/wscript_build b/libcli/named_pipe_auth/wscript_build index c97893bb1f..53fbd84ab6 100644 --- a/libcli/named_pipe_auth/wscript_build +++ b/libcli/named_pipe_auth/wscript_build @@ -1,8 +1,9 @@ #!/usr/bin/env python -bld.SAMBA_SUBSYSTEM('NAMED_PIPE_AUTH_TSTREAM', - source='npa_tstream.c', - public_deps='NDR_NAMED_PIPE_AUTH tevent LIBTSOCKET' - ) +bld.SAMBA_LIBRARY('npa_tstream', + source='npa_tstream.c', + private_library=True, + public_deps='NDR_NAMED_PIPE_AUTH tevent LIBTSOCKET' + ) -- cgit