libcli: make the LIBSECURITY subsystem into a private library
authorAndrew Tridgell <tridge@samba.org>
Wed, 20 Oct 2010 07:19:31 +0000 (18:19 +1100)
committerAndrew Tridgell <tridge@samba.org>
Thu, 21 Oct 2010 08:03:23 +0000 (19:03 +1100)
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>

libcli/security/wscript_build

index aaaf8d8372a47fa17e7f136d0ea4209fcea689dd..2554521dc45296812034fecf1d77d7bdb5453e7c 100644 (file)
@@ -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'
+                  )