1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/libcli/security/wscript_build
Andrew Bartlett e3821f2c40 s4-auth Move libcli/security/session.c to the top level
This code is now useful in common, as the elements of the
auth_session_info structure have now been defined in common IDL.

Andrew Bartlett
2011-02-22 16:20:11 +11:00

16 lines
613 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',
private_library=True,
deps='talloc ndr NDR_SECURITY'
)
if getattr(bld.env, '_SAMBA_BUILD_', 0) == 4:
bld.SAMBA_PYTHON('pysecurity',
source='pysecurity.c',
deps='security pytalloc-util',
realname='samba/security.so'
)