From: Sebastian Kemper Date: Tue, 9 Feb 2021 21:00:03 +0000 (+0100) Subject: libxslt: allow access to iconv X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=48c838772f3d5dbca346327645464d63d34ac859;p=feed%2Fpackages.git libxslt: allow access to iconv Since commit d18692c libxml2 is linked against iconv. Now libxslt needs access to iconv as well. Without it the build fails. Signed-off-by: Sebastian Kemper --- diff --git a/libs/libxslt/Makefile b/libs/libxslt/Makefile index e9226036d9..c0db3e37c7 100644 --- a/libs/libxslt/Makefile +++ b/libs/libxslt/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libxslt PKG_VERSION:=1.1.34 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:= \ @@ -29,11 +29,12 @@ HOST_BUILD_DEPENDS:=libxml2/host include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/host-build.mk +include $(INCLUDE_DIR)/nls.mk define Package/libxslt SECTION:=libs CATEGORY:=Libraries - DEPENDS:=+libxml2 + DEPENDS:=+libxml2 $(ICONV_DEPENDS) TITLE:=Gnome XSLT library URL:=http://xmlsoft.org/XSLT/ endef