xref: /OK3568_Linux_fs/buildroot/package/clamav/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_CLAMAV
2	bool "clamav"
3	depends on BR2_INSTALL_LIBSTDCPP
4	depends on BR2_TOOLCHAIN_HAS_THREADS
5	depends on BR2_USE_MMU # fork()
6	depends on !BR2_STATIC_LIBS # dlopen
7	depends on BR2_USE_WCHAR
8	select BR2_PACKAGE_LIBCURL
9	select BR2_PACKAGE_LIBMSPACK
10	select BR2_PACKAGE_MUSL_FTS if !BR2_TOOLCHAIN_USES_GLIBC
11	select BR2_PACKAGE_OPENSSL
12	select BR2_PACKAGE_ZLIB
13	help
14	  ClamAV is an open source antivirus engine for detecting
15	  trojans, viruses, malware & other malicious threats.
16
17	  http://www.clamav.net
18
19comment "clamav needs a toolchain w/ C++, dynamic library, threads, wchar"
20	depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS \
21		|| !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
22	depends on BR2_USE_MMU
23