1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

build: Use ntlm_auth from source3 as the only ntlm_auth installed on the system

The ntlm_auth4 binary is untested, and is missing major features compared with
the source3 binary.  The two are being slowly merged, but I have not finished
that.

Andrew Bartlett

Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Andrew Bartlett 2012-11-21 15:34:43 +11:00 committed by Andreas Schneider
parent c704f0daa5
commit 1000da9335
3 changed files with 10 additions and 8 deletions

View File

@ -121,7 +121,7 @@ def cmd_testonly(opt):
'smbclient3:smbclient,' +
'smbclient4:smbclient4,' +
'smbtorture4:smbtorture,' +
'ntlm_auth3:ntlm_auth3')
'ntlm_auth3:ntlm_auth')
env.OPTIONS = '--binary-mapping=%s' % binary_mapping
if not Options.options.SLOWTEST:

View File

@ -1568,7 +1568,7 @@ bld.SAMBA3_BINARY('versiontest',
param''',
vars=locals())
bld.SAMBA3_BINARY('ntlm_auth' + bld.env.suffix3,
bld.SAMBA3_BINARY('ntlm_auth',
source=NTLM_AUTH_SRC,
deps='''
talloc

View File

@ -1,11 +1,13 @@
#!/usr/bin/env python
bld.SAMBA_BINARY('ntlm_auth',
bld.SAMBA_BINARY('ntlm_auth4',
source='ntlm_auth.c',
manpages='man/ntlm_auth.1',
deps='''samba-hostconfig samba-util popt POPT_SAMBA POPT_CREDENTIALS gensec LIBCLI_RESOLVE
deps='''samba-hostconfig samba-util popt
POPT_SAMBA POPT_CREDENTIALS gensec LIBCLI_RESOLVE
auth4 NTLMSSP_COMMON MESSAGING events service''',
pyembed=True
pyembed=True,
install=False
)