summaryrefslogtreecommitdiff
path: root/libcli/auth/wscript_build
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-07-25 16:04:38 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-10-18 13:13:31 +1100
commit0c6e4adcb26557ae6e55169c051f0260151dc5d9 (patch)
treeecf95f05bbc93f1da279d987856410cf79bdb736 /libcli/auth/wscript_build
parent5e6543ad76490b5d21b99841e1f984bad7f17e33 (diff)
downloadsamba-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_build11
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',