libxslt: allow access to iconv 14702/head
authorSebastian Kemper <sebastian_ml@gmx.net>
Tue, 9 Feb 2021 21:00:03 +0000 (22:00 +0100)
committerSebastian Kemper <sebastian_ml@gmx.net>
Tue, 9 Feb 2021 21:00:06 +0000 (22:00 +0100)
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 <sebastian_ml@gmx.net>
libs/libxslt/Makefile

index e9226036d9449fba680f29d1e59ed1ee87471c7d..c0db3e37c73bef395f0ded0f762121354d9d1183 100644 (file)
@@ -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