mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
0c6e4adcb2
This brings in the code from both libcli/auth and source4/auth/ntlmssp. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org>
44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('cliauth',
|
|
source='',
|
|
deps='NTLMSSP_COMMON MSRPC_PARSE LIBCLI_AUTH COMMON_SCHANNEL PAM_ERRORS SPNEGO_PARSE KRB5_WRAP errors NTLM_CHECK',
|
|
private_library=True,
|
|
grouping_library=True)
|
|
|
|
bld.SAMBA_SUBSYSTEM('MSRPC_PARSE',
|
|
source='msrpc_parse.c',
|
|
deps='talloc'
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('NTLM_CHECK',
|
|
source='ntlm_check.c',
|
|
deps = 'talloc'
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBCLI_AUTH',
|
|
source='credentials.c session.c smbencrypt.c smbdes.c',
|
|
public_deps='MSRPC_PARSE',
|
|
public_headers='credentials.h:domain_credentials.h'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('COMMON_SCHANNEL',
|
|
source='schannel_state_tdb.c schannel_sign.c',
|
|
deps='tdb-wrap UTIL_TDB samba-hostconfig'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('PAM_ERRORS',
|
|
source='pam_errors.c',
|
|
deps='talloc'
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('SPNEGO_PARSE',
|
|
source='spnego_parse.c',
|
|
deps='asn1util')
|
|
|
|
bld.SAMBA_SUBSYSTEM('KRB5_WRAP',
|
|
source='krb5_wrap.c',
|
|
deps='gssapi_krb5 krb5 ndr-krb5pac com_err KRB5_PAC')
|