mirror of
https://github.com/samba-team/samba.git
synced 2025-02-04 17:47:26 +03:00
1e83b36afb
libcli/auth Use true and false rather than True and False in common code Andrew Bartlett Signed-off-by: Günther Deschner <gd@samba.org>
17 lines
514 B
Python
17 lines
514 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_MODULE('gensec_ntlmssp',
|
|
source='''ntlmssp.c ntlmssp_sign.c
|
|
ntlmssp_client.c ntlmssp_server.c
|
|
../../../libcli/auth/ntlmssp_sign.c
|
|
../../../libcli/auth/ntlmssp_ndr.c
|
|
../../../libcli/auth/ntlmssp.c
|
|
../../../libcli/auth/ntlmssp_server.c''',
|
|
autoproto='proto.h',
|
|
subsystem='gensec',
|
|
init_function='gensec_ntlmssp_init',
|
|
deps='MSRPC_PARSE CREDENTIALS NDR_NTLMSSP',
|
|
internal_module=True
|
|
)
|
|
|