summaryrefslogtreecommitdiff
path: root/source4/auth
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-02-24 10:28:43 +1100
committerAndrew Tridgell <tridge@samba.org>2011-02-24 11:57:48 +1100
commitd37a55548b67e4e5693d337faeca2ec2da5f273f (patch)
treeab86d3c4bf5d8eb006edfffeeba5133d6d2422fc /source4/auth
parent29f850ac4330909afa426474686be363d0249d73 (diff)
downloadsamba-d37a55548b67e4e5693d337faeca2ec2da5f273f.tar.gz
samba-d37a55548b67e4e5693d337faeca2ec2da5f273f.tar.bz2
samba-d37a55548b67e4e5693d337faeca2ec2da5f273f.zip
build: moved libcli/auth/ntlmssp*.c into a common libcliauth.so library
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/auth')
-rw-r--r--source4/auth/ntlm/wscript_build2
-rw-r--r--source4/auth/ntlmssp/ntlmssp_client.c1
-rw-r--r--source4/auth/ntlmssp/wscript_build8
3 files changed, 4 insertions, 7 deletions
diff --git a/source4/auth/ntlm/wscript_build b/source4/auth/ntlm/wscript_build
index 615419e5c0..2ac2773c85 100644
--- a/source4/auth/ntlm/wscript_build
+++ b/source4/auth/ntlm/wscript_build
@@ -4,7 +4,7 @@ bld.SAMBA_MODULE('auth4_sam_module',
source='auth_sam.c',
subsystem='auth4',
init_function='auth_sam_init',
- deps='samdb auth4_sam ntlm_check samba-hostconfig'
+ deps='samdb auth4_sam NTLMSSP_COMMON samba-hostconfig'
)
diff --git a/source4/auth/ntlmssp/ntlmssp_client.c b/source4/auth/ntlmssp/ntlmssp_client.c
index 1bbd4cc568..13827e9c96 100644
--- a/source4/auth/ntlmssp/ntlmssp_client.c
+++ b/source4/auth/ntlmssp/ntlmssp_client.c
@@ -28,6 +28,7 @@
#include "auth/credentials/credentials.h"
#include "auth/gensec/gensec.h"
#include "param/param.h"
+#include "libcli/auth/ntlmssp_private.h"
/*********************************************************************
Client side NTLMSSP
diff --git a/source4/auth/ntlmssp/wscript_build b/source4/auth/ntlmssp/wscript_build
index 0f18183e65..9c25aa10ed 100644
--- a/source4/auth/ntlmssp/wscript_build
+++ b/source4/auth/ntlmssp/wscript_build
@@ -2,15 +2,11 @@
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''',
+ ntlmssp_client.c ntlmssp_server.c''',
autoproto='proto.h',
subsystem='gensec',
init_function='gensec_ntlmssp_init',
- deps='MSRPC_PARSE credentials NDR_NTLMSSP',
+ deps='credentials NTLMSSP_COMMON',
internal_module=True
)