From: Philip Prindeville Date: Wed, 4 Feb 2026 21:29:53 +0000 (-0700) Subject: wget: don't build http-ntml as it's deprecated X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d43dc6e98d6e21eac6da9be0e8b8df6afe90b0cc;p=openwrt-packages.git wget: don't build http-ntml as it's deprecated NTML uses DES and MD4, both of which are retired. Signed-off-by: Philip Prindeville --- diff --git a/net/wget/Makefile b/net/wget/Makefile index 2f4645b08..5f3677130 100644 --- a/net/wget/Makefile +++ b/net/wget/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=wget PKG_VERSION:=1.25.0 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@GNU/$(PKG_NAME) @@ -72,6 +72,7 @@ endef CONFIGURE_ARGS+= \ --disable-rpath \ --disable-iri \ + --disable-ntlm \ --with-included-libunistring \ --without-libuuid \ --without-libpsl @@ -90,7 +91,6 @@ endif ifeq ($(BUILD_VARIANT),nossl) CONFIGURE_ARGS+= \ - --disable-ntlm \ --without-ssl endif