summaryrefslogtreecommitdiff
path: root/libcli/security
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-20 18:19:31 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-21 19:03:23 +1100
commit8709c3c0f2695b199bb63fee27c6ae054d665209 (patch)
tree7d85b235f16a7b3797fc07bea4a081a61a4a849b /libcli/security
parente596a4e6c3598d0045c330a595bd0a05b6c33bb7 (diff)
downloadsamba-8709c3c0f2695b199bb63fee27c6ae054d665209.tar.gz
samba-8709c3c0f2695b199bb63fee27c6ae054d665209.tar.bz2
samba-8709c3c0f2695b199bb63fee27c6ae054d665209.zip
libcli: make the LIBSECURITY subsystem into a private library
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'libcli/security')
-rw-r--r--libcli/security/wscript_build9
1 files changed, 5 insertions, 4 deletions
diff --git a/libcli/security/wscript_build b/libcli/security/wscript_build
index aaaf8d8372..2554521dc4 100644
--- a/libcli/security/wscript_build
+++ b/libcli/security/wscript_build
@@ -1,8 +1,9 @@
#!/usr/bin/env python
-bld.SAMBA_SUBSYSTEM('LIBSECURITY',
- source='dom_sid.c display_sec.c secace.c secacl.c security_descriptor.c sddl.c privileges.c security_token.c access_check.c object_tree.c create_descriptor.c util_sid.c',
- deps='talloc LIBNDR'
- )
+bld.SAMBA_LIBRARY('LIBSECURITY',
+ source='dom_sid.c display_sec.c secace.c secacl.c security_descriptor.c sddl.c privileges.c security_token.c access_check.c object_tree.c create_descriptor.c util_sid.c',
+ private_library=True,
+ deps='talloc LIBNDR'
+ )