Giuseppe Scrivano <[email protected]> writes:
> Tom Merriam <[email protected]> writes:
>
>> I built wget with openssl (configure --with-ssl=openssl && make) and I
>> am able to authenticate against my server.
>>
>> Is this a bug with wget, gnutls, or with the way debian builds wget?
>
> I am quite sure that this is a bug in wget.
The NTLM code kindly donated by Daniel has always required OpenSSL.
configure.ac says:
dnl Enable NTLM if requested and if SSL is available.
if test x"$LIBSSL" != x || test "$ac_cv_lib_ssl32_SSL_connect" = yes
then
if test x"$ENABLE_NTLM" != xno
then
AC_DEFINE([ENABLE_NTLM], 1,
[Define if you want the NTLM authorization support compiled in.])
AC_LIBOBJ([http-ntlm])
fi
...
Updating the code to also support GNU/TLS appears straightforward.