mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
022aa5ea34
Signed-off-by: Lumir Balhar <lbalhar@redhat.com> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
17 lines
693 B
Python
17 lines
693 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_LIBRARY('samba-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'
|
|
)
|
|
|
|
for env in bld.gen_python_environments():
|
|
pytalloc_util = bld.pyembed_libname('pytalloc-util')
|
|
bld.SAMBA_PYTHON('pysecurity',
|
|
source='pysecurity.c',
|
|
deps='samba-security %s' % pytalloc_util,
|
|
realname='samba/security.so'
|
|
)
|