f255a32211
qpid-proton needs C++ (and so threads due to proactor) to avoid the following build failure: CMake Error at /nvmedata/autobuild/instance-3/output-1/host/share/cmake-3.18/Modules/CMakeTestCXXCompiler.cmake:59 (message): The C++ compiler "/usr/bin/c++" is not able to compile a simple test program. C++ check can't easily be removed: https://github.com/apache/qpid-proton/pull/366 Fixes: - http://autobuild.buildroot.org/results/76f8deccc9c4eee29eddf42586cc28e96eec0827 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Reviewed-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
21 lines
696 B
Plaintext
21 lines
696 B
Plaintext
config BR2_PACKAGE_QPID_PROTON
|
|
bool "qpid-proton"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on !BR2_STATIC_LIBS # build a shared library
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
help
|
|
The AMQP messaging toolkit
|
|
|
|
Qpid Proton is a high-performance, lightweight messaging
|
|
library. It can be used in the widest range of messaging
|
|
applications, including brokers, client libraries, routers,
|
|
bridges, proxies, and more.
|
|
|
|
https://qpid.apache.org/proton/
|
|
|
|
comment "qpid-proton needs a toolchain w/ C++, dynamic library, threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS
|