diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-04-06 14:29:34 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-04-06 08:12:19 +0200 |
commit | 5adf85e6afa949f8e636327bb3446aa4f41948a7 (patch) | |
tree | 1cadcf16b8564956c48bbcb837e8145e8d867614 /libcli/named_pipe_auth | |
parent | a8da13cd5c7b5fa7cf3c6f9b3afce066f085e67c (diff) | |
download | samba-5adf85e6afa949f8e636327bb3446aa4f41948a7.tar.gz samba-5adf85e6afa949f8e636327bb3446aa4f41948a7.tar.bz2 samba-5adf85e6afa949f8e636327bb3446aa4f41948a7.zip |
tstream: make npa_tstream a private library
this prevents symbol duplication of the npa_tstream symbols
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'libcli/named_pipe_auth')
-rw-r--r-- | libcli/named_pipe_auth/wscript_build | 9 |
1 files changed, 5 insertions, 4 deletions
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' + ) |