diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-02-24 10:28:43 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-02-24 11:57:48 +1100 |
commit | d37a55548b67e4e5693d337faeca2ec2da5f273f (patch) | |
tree | ab86d3c4bf5d8eb006edfffeeba5133d6d2422fc /source3/wscript_build | |
parent | 29f850ac4330909afa426474686be363d0249d73 (diff) | |
download | samba-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 'source3/wscript_build')
-rw-r--r-- | source3/wscript_build | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 657a8668a3..311bf33eb0 100644 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -129,11 +129,7 @@ LIBSMB_ERR_SRC = '''${DCE_RPC_ERR_SRC}''' LIBNTLMSSP_SRC = ''' libsmb/ntlmssp.c - libsmb/ntlmssp_wrap.c - ../libcli/auth/ntlmssp.c - ../libcli/auth/ntlmssp_sign.c - ../libcli/auth/ntlmssp_ndr.c - ../libcli/auth/ntlmssp_server.c''' + libsmb/ntlmssp_wrap.c''' TLDAP_SRC = '''lib/tldap.c lib/tldap_util.c lib/util_tsock.c''' @@ -719,7 +715,7 @@ bld.SAMBA3_SUBSYSTEM('TLDAP', bld.SAMBA3_LIBRARY('passdb', source=PASSDB_SRC, - deps='SECRETS3 SMBLDAP GROUPDB pdb wbclient', + deps='SECRETS3 SMBLDAP GROUPDB pdb wbclient LIBCLI_AUTH', private_library=True, vars=locals()) @@ -787,7 +783,7 @@ bld.SAMBA3_SUBSYSTEM('LIBSMB_ERR', bld.SAMBA3_SUBSYSTEM('LIBNTLMSSP', source=LIBNTLMSSP_SRC, - deps='LIBSMB_ERR NDR_NTLMSSP ntlm_check', + deps='LIBSMB_ERR NDR_NTLMSSP NTLMSSP_COMMON', vars=locals()) bld.SAMBA3_SUBSYSTEM('LIBSMB', |