summaryrefslogtreecommitdiff
path: root/lib/socket_wrapper
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-21 08:28:12 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-21 19:03:24 +1100
commitdc00b773fc67ff55567e3c159749f1e55f4a5b1f (patch)
treefb0ad5eb589c1c91a148c18f70205014221724f8 /lib/socket_wrapper
parent29c0b86126c2eb4e5c921f63b10e796bce647e1a (diff)
downloadsamba-dc00b773fc67ff55567e3c159749f1e55f4a5b1f.tar.gz
samba-dc00b773fc67ff55567e3c159749f1e55f4a5b1f.tar.bz2
samba-dc00b773fc67ff55567e3c159749f1e55f4a5b1f.zip
wrapper: make socket_wrapper, uid_wrapper and nss_wrapper private libs
this prevents double instantiation Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'lib/socket_wrapper')
-rw-r--r--lib/socket_wrapper/wscript_build9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/socket_wrapper/wscript_build b/lib/socket_wrapper/wscript_build
index b860fbe9ad..a3546a0e22 100644
--- a/lib/socket_wrapper/wscript_build
+++ b/lib/socket_wrapper/wscript_build
@@ -1,7 +1,8 @@
#!/usr/bin/env python
-bld.SAMBA_SUBSYSTEM('SOCKET_WRAPPER',
- source='socket_wrapper.c',
- group='base_libraries',
- deps='replace')
+bld.SAMBA_LIBRARY('SOCKET_WRAPPER',
+ source='socket_wrapper.c',
+ group='base_libraries',
+ private_library=True,
+ deps='replace')