summaryrefslogtreecommitdiffstats
path: root/package/kvazaar/Config.in
diff options
context:
space:
mode:
authorRomain Naour <romain.naour@smile.fr>2017-07-05 01:08:56 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-07-05 01:18:24 +0200
commit7e0b4a5cd0b398e21f50be4eb111a926dbac471b (patch)
treed14476161c15d6c33b59a472ceb50838d018f9ac /package/kvazaar/Config.in
parent05985ccb9d12bf90f2694641b334e8426a2c444c (diff)
downloadbuildroot-7e0b4a5cd0b398e21f50be4eb111a926dbac471b.tar.gz
buildroot-7e0b4a5cd0b398e21f50be4eb111a926dbac471b.zip
package/kvazaar: needs C++ compiler
Even if there is only one CPP file src/extras/crypto.cpp which should be disabled by --without-cryptopp, kvazaar fail to build the shared library libkvazaar.so when no C++ compiler is available. checking whether we are using the GNU C++ compiler... no Fixes: [microblazel] http://autobuild.buildroot.net/results/5d1/5d140ed95e292f73b6770a5e5be717df844e4830 [arm] http://autobuild.buildroot.net/results/c55/c55b973502b9b88643ae9fca11447b547148275d Signed-off-by: Romain Naour <romain.naour@smile.fr> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/kvazaar/Config.in')
-rw-r--r--package/kvazaar/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/kvazaar/Config.in b/package/kvazaar/Config.in
index 06ab9ac0c2..de2c6c9d87 100644
--- a/package/kvazaar/Config.in
+++ b/package/kvazaar/Config.in
@@ -1,10 +1,11 @@
config BR2_PACKAGE_KVAZAAR
bool "kvazaar"
+ depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS
help
An open-source HEVC encoder licensed under LGPLv2.1
https://github.com/ultravideo/kvazaar
-comment "kvazaar needs a toolchain w/ threads"
- depends on !BR2_TOOLCHAIN_HAS_THREADS
+comment "kvazaar needs a toolchain w/ C++, threads"
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
OpenPOWER on IntegriCloud