From a3460121b14899960cfd7bced43e914bbc758152 Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Mon, 16 Mar 2020 20:15:27 +0100 Subject: [PATCH] package/wget: add optional dependency to libiconv wget has an optional dependency to libiconv: http://git.savannah.gnu.org/cgit/wget.git/tree/configure.ac#n344 Signed-off-by: Bernd Kuhls Signed-off-by: Thomas Petazzoni --- package/wget/wget.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/wget/wget.mk b/package/wget/wget.mk index 7b9c3e75d9..ed3f1fdff9 100644 --- a/package/wget/wget.mk +++ b/package/wget/wget.mk @@ -21,6 +21,10 @@ else WGET_CONF_OPTS += --without-ssl endif +ifeq ($(BR2_PACKAGE_LIBICONV),y) +WGET_DEPENDENCIES += libiconv +endif + ifeq ($(BR2_PACKAGE_LIBIDN2),y) WGET_CONF_OPTS += --with-libidn WGET_DEPENDENCIES += libidn2 -- 2.30.2