f7744aba7b
clamav doesn't build with zlib-ng since bump to version 1.9.9-b1 in commit1f7b12a0b4
and the removal of FAR:0db1040667
: In file included from nsis/nsis_zlib.h:32, from nsis/nulsft.c:38: nsis/nsis_zutil.h:36:17: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'uchf' 36 | typedef uch FAR uchf; | ^~~~ Fixes: - http://autobuild.buildroot.org/results/524ee31face8be6a813829b036c4d6134ee5ca98 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
24 lines
771 B
Plaintext
24 lines
771 B
Plaintext
config BR2_PACKAGE_CLAMAV
|
|
bool "clamav"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on !BR2_STATIC_LIBS # dlopen
|
|
depends on BR2_USE_WCHAR
|
|
select BR2_PACKAGE_LIBCURL
|
|
select BR2_PACKAGE_LIBMSPACK
|
|
select BR2_PACKAGE_MUSL_FTS if !BR2_TOOLCHAIN_USES_GLIBC
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_ZLIB
|
|
select BR2_PACKAGE_ZLIB_FORCE_LIBZLIB
|
|
help
|
|
ClamAV is an open source antivirus engine for detecting
|
|
trojans, viruses, malware & other malicious threats.
|
|
|
|
http://www.clamav.net
|
|
|
|
comment "clamav needs a toolchain w/ C++, dynamic library, threads, wchar"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS \
|
|
|| !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
|
depends on BR2_USE_MMU
|