From 1d835ebcdd24e00714620936eb83c80e1846c62c Mon Sep 17 00:00:00 2001 From: Josef Schlehofer Date: Thu, 15 Apr 2021 01:02:34 +0200 Subject: [PATCH] clamav: add libiconv dependencies when build with NLS NLS means Native Language Support and when you have it enabled (it is not default), clamav can not be compiled as it shows following error: Package clamav is missing dependencies for the following libraries: libiconv.so.2 Also, it is required that package libiconv-full is compiled first/before than clamav and then try to compile clamav. Signed-off-by: Josef Schlehofer (cherry picked from commit 87be6ffe6076778336f7db752fee0ef5f3f923e8) --- net/clamav/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/clamav/Makefile b/net/clamav/Makefile index 3adb153164..f42e6d1128 100644 --- a/net/clamav/Makefile +++ b/net/clamav/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=clamav PKG_VERSION:=0.103.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://www.clamav.net/downloads/production/ @@ -30,7 +30,7 @@ include $(INCLUDE_DIR)/nls.mk define Package/clamav/Default SECTION:=net - DEPENDS:=+libstdcpp +libpthread +zlib +libbz2 +libxml2 +libcurl +libjson-c +libmilter-sendmail +libopenssl +libltdl +libpcre2 + DEPENDS:=+libstdcpp +libpthread +zlib +libbz2 +libxml2 +libcurl +libjson-c +libmilter-sendmail +libopenssl +libltdl +libpcre2 $(ICONV_DEPENDS) CATEGORY:=Network SUBMENU:=Web Servers/Proxies TITLE:=ClamAV -- 2.30.2