From 1000da933534f1148f5b6f9db2029a5074917968 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 21 Nov 2012 15:34:43 +1100 Subject: 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 --- source4/utils/wscript_build | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'source4/utils/wscript_build') diff --git a/source4/utils/wscript_build b/source4/utils/wscript_build index da937dd357..3b21eda900 100644 --- a/source4/utils/wscript_build +++ b/source4/utils/wscript_build @@ -1,11 +1,13 @@ #!/usr/bin/env python -bld.SAMBA_BINARY('ntlm_auth', - source='ntlm_auth.c', - manpages='man/ntlm_auth.1', - deps='''samba-hostconfig samba-util popt POPT_SAMBA POPT_CREDENTIALS gensec LIBCLI_RESOLVE - auth4 NTLMSSP_COMMON MESSAGING events service''', - pyembed=True +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 + auth4 NTLMSSP_COMMON MESSAGING events service''', + pyembed=True, + install=False ) -- cgit