Browse Source

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 <sebastian_ml@gmx.net>
lilik-openwrt-22.03
Sebastian Kemper 3 years ago
parent
commit
48c838772f
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      libs/libxslt/Makefile

+ 3
- 2
libs/libxslt/Makefile View 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


Loading…
Cancel
Save