mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
055f017b36
The s3-waf build system is a key component of the top level build, but with this commit is is no longer available directly. This reduces the number of build system combinations in master as we prepare for the Samba 4.0 release. Andrew Bartlett
15 lines
557 B
Python
15 lines
557 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_LIBRARY('security',
|
|
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 session.c secdesc.c',
|
|
private_library=True,
|
|
deps='talloc ndr NDR_SECURITY'
|
|
)
|
|
|
|
bld.SAMBA_PYTHON('pysecurity',
|
|
source='pysecurity.c',
|
|
deps='security pytalloc-util',
|
|
realname='samba/security.so'
|
|
)
|