mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
13f8674a15
there is a libsecurity on OSF1 which clasheѕ with our security lib. see bug #9023. Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Fri Aug 10 14:22:21 CEST 2012 on sn-devel-104
15 lines
569 B
Python
15 lines
569 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'
|
|
)
|
|
|
|
bld.SAMBA_PYTHON('pysecurity',
|
|
source='pysecurity.c',
|
|
deps='samba-security pytalloc-util',
|
|
realname='samba/security.so'
|
|
)
|