Fix wget-nossl variant by disabling ntlm support in wget-nossl.
https://dev.openwrt.org/ticket/15718#comment:13
https://dev.openwrt.org/ticket/15731

In wget 1.15 the ntlm support requires either ssl or libnettle library. Check-in behind the change:
http://git.savannah.gnu.org/cgit/wget.git/commit/?id=c19d76c02483f070beb688d6fe6f5fafb5674a08

ssl is not present in the nossl variant and developers prefer to keep the nossl variant small, so the natural alternative is to disable ntlm support in the nossl variant, as a configure option for that purpose exists and a simple change in Openwrt Makefile is enough.
Tested with ar71xx/wndr3700.

signed-off-by: hannu.ny...@iki.fi


Index: feeds/packages/net/wget/Makefile
===================================================================
--- feeds/packages/net/wget/Makefile    (revision 40585)
+++ feeds/packages/net/wget/Makefile    (working copy)
@@ -76,6 +76,7 @@
 
 ifeq ($(BUILD_VARIANT),nossl)
        CONFIGURE_ARGS+= \
+               --disable-ntlm \
                --without-ssl
 endif
 
_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Reply via email to