From mboxrd@z Thu Jan 1 00:00:00 1970 From: Romain Naour Date: Wed, 5 Jul 2017 01:08:56 +0200 Subject: [Buildroot] [PATCH 2/3] package/kvazaar: needs C++ compiler In-Reply-To: <20170704230857.7916-1-romain.naour@smile.fr> References: <20170704230857.7916-1-romain.naour@smile.fr> Message-ID: <20170704230857.7916-2-romain.naour@smile.fr> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net 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 --- package/kvazaar/Config.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/kvazaar/Config.in b/package/kvazaar/Config.in index 06ab9ac..de2c6c9 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 -- 2.9.4