mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +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
53 lines
1.1 KiB
Python
53 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
bld.RECURSE('gensec')
|
|
bld.RECURSE('kerberos')
|
|
bld.RECURSE('ntlm')
|
|
|
|
bld.SAMBA_SUBSYSTEM('auth_session',
|
|
source='session.c',
|
|
autoproto='session_proto.h',
|
|
public_deps='samba-credentials',
|
|
public_headers='session.h',
|
|
header_path='samba',
|
|
deps='samdb auth4_sam'
|
|
)
|
|
|
|
bld.SAMBA_LIBRARY('auth_unix_token',
|
|
source='unix_token.c',
|
|
autoproto='unix_token_proto.h',
|
|
public_deps='LIBWBCLIENT_OLD',
|
|
private_library=True,
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('samba_server_gensec',
|
|
source='samba_server_gensec.c',
|
|
public_deps='samba-credentials gensec auth4'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('auth_system_session',
|
|
source='system_session.c',
|
|
autoproto='system_session_proto.h',
|
|
public_deps='samba-credentials',
|
|
deps='auth_session',
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('auth4_sam',
|
|
source='sam.c',
|
|
autoproto='auth_sam.h',
|
|
public_deps='samdb samba-security ldb tevent',
|
|
deps=''
|
|
)
|
|
|
|
|
|
bld.SAMBA_PYTHON('pyauth',
|
|
source='pyauth.c',
|
|
public_deps='auth_system_session',
|
|
deps='samdb pytalloc-util pyparam_util pyldb-util pycredentials auth4',
|
|
realname='samba/auth.so'
|
|
)
|
|
|