diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-07-25 16:04:38 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-10-18 13:13:31 +1100 |
commit | 0c6e4adcb26557ae6e55169c051f0260151dc5d9 (patch) | |
tree | ecf95f05bbc93f1da279d987856410cf79bdb736 /libcli/auth/wscript_build | |
parent | 5e6543ad76490b5d21b99841e1f984bad7f17e33 (diff) | |
download | samba-0c6e4adcb26557ae6e55169c051f0260151dc5d9.tar.gz samba-0c6e4adcb26557ae6e55169c051f0260151dc5d9.tar.bz2 samba-0c6e4adcb26557ae6e55169c051f0260151dc5d9.zip |
ntlmssp: Move ntlmssp code to auth/ntlmssp
This brings in the code from both libcli/auth and
source4/auth/ntlmssp.
Andrew Bartlett
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'libcli/auth/wscript_build')
-rw-r--r-- | libcli/auth/wscript_build | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/libcli/auth/wscript_build b/libcli/auth/wscript_build index 2afab44ac2..a140df2cc0 100644 --- a/libcli/auth/wscript_build +++ b/libcli/auth/wscript_build @@ -2,20 +2,19 @@ bld.SAMBA_LIBRARY('cliauth', source='', - deps='NTLMSSP_COMMON MSRPC_PARSE LIBCLI_AUTH COMMON_SCHANNEL PAM_ERRORS SPNEGO_PARSE KRB5_WRAP errors', + 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('NTLMSSP_COMMON', - source='ntlmssp.c ntlmssp_ndr.c ntlmssp_server.c ntlmssp_sign.c ntlm_check.c', - deps='samba-util NDR_NTLMSSP MSRPC_PARSE') - - 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', |