mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
fdb6305c86
This was part of --extra-python support. Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
16 lines
627 B
Python
16 lines
627 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'
|
|
)
|
|
|
|
pytalloc_util = bld.pyembed_libname('pytalloc-util')
|
|
bld.SAMBA_PYTHON('pysecurity',
|
|
source='pysecurity.c',
|
|
deps='samba-security %s' % pytalloc_util,
|
|
realname='samba/security.so'
|
|
)
|