diff mbox series

[1/1] clamav: needs C++

Message ID 20190128184706.5378-1-fontaine.fabrice@gmail.com
State Accepted
Commit 4d85d5038ec0a7fb127cd58a48dfd7113c9c22c4
Headers show
Series [1/1] clamav: needs C++ | expand

Commit Message

Fabrice Fontaine Jan. 28, 2019, 6:47 p.m. UTC
clamav needs C++ since bump to version 0.101.1 and
https://github.com/Cisco-Talos/clamav-devel/commit/d39cb6581f3c854476044f069d2393fc44702c36

Fixes:
 - http://autobuild.buildroot.org/results/be14aa571309cda32a5963feed9fd7f220e87fe6

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/clamav/Config.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Comments

Bernd Kuhls Jan. 28, 2019, 7:25 p.m. UTC | #1
Am Mon, 28 Jan 2019 19:47:06 +0100 schrieb Fabrice Fontaine:

> clamav needs C++ since bump to version 0.101.1 and
> https://github.com/Cisco-Talos/clamav-devel/commit/
d39cb6581f3c854476044f069d2393fc44702c36

Acked-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Peter Korsgaard Jan. 28, 2019, 9:05 p.m. UTC | #2
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > clamav needs C++ since bump to version 0.101.1 and
 > https://github.com/Cisco-Talos/clamav-devel/commit/d39cb6581f3c854476044f069d2393fc44702c36

 > Fixes:
 >  - http://autobuild.buildroot.org/results/be14aa571309cda32a5963feed9fd7f220e87fe6

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.
diff mbox series

Patch

diff --git a/package/clamav/Config.in b/package/clamav/Config.in
index bc934ea452..56bf0af38c 100644
--- a/package/clamav/Config.in
+++ b/package/clamav/Config.in
@@ -1,5 +1,6 @@ 
 config BR2_PACKAGE_CLAMAV
 	bool "clamav"
+	depends on BR2_INSTALL_LIBSTDCPP
 	depends on BR2_TOOLCHAIN_HAS_THREADS
 	depends on BR2_USE_MMU # fork()
 	select BR2_PACKAGE_LIBTOOL
@@ -11,6 +12,6 @@  config BR2_PACKAGE_CLAMAV
 
 	  http://www.clamav.net
 
-comment "clamav needs a toolchain w/ threads"
-	depends on !BR2_TOOLCHAIN_HAS_THREADS
+comment "clamav needs a toolchain w/ C++, threads"
+	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
 	depends on BR2_USE_MMU