diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 13:51:55 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:25 +1100 |
commit | 4b3fae6ca8ed29b7c74edf589de678418cb3481a (patch) | |
tree | 68dfaa7094ebe9bb40e3ac58937c729142e8c140 /source4/lib/socket | |
parent | aa0dbdc5b11a0efa46ff540d99875690c6244c25 (diff) | |
download | samba-4b3fae6ca8ed29b7c74edf589de678418cb3481a.tar.gz samba-4b3fae6ca8ed29b7c74edf589de678418cb3481a.tar.bz2 samba-4b3fae6ca8ed29b7c74edf589de678418cb3481a.zip |
s4-socket: make LIBNETIF a private library
Diffstat (limited to 'source4/lib/socket')
-rw-r--r-- | source4/lib/socket/wscript_build | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source4/lib/socket/wscript_build b/source4/lib/socket/wscript_build index c2de5f49f8..0c4fd7e1e2 100644 --- a/source4/lib/socket/wscript_build +++ b/source4/lib/socket/wscript_build @@ -1,11 +1,12 @@ #!/usr/bin/env python -bld.SAMBA_SUBSYSTEM('LIBNETIF', - source='interface.c netif.c', - autoproto='netif_proto.h', - deps='LIBSAMBA-UTIL' - ) +bld.SAMBA_LIBRARY('LIBNETIF', + source='interface.c netif.c', + autoproto='netif_proto.h', + deps='LIBSAMBA-UTIL', + private_library=True + ) bld.SAMBA_MODULE('socket_ip', |