xref: /OK3568_Linux_fs/buildroot/package/azmq/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_AZMQ
2	bool "azmq"
3	depends on BR2_INSTALL_LIBSTDCPP
4	depends on BR2_TOOLCHAIN_HAS_ATOMIC
5	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # boost-log
6	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
7	depends on BR2_USE_WCHAR # boost
8	depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # boost-thread
9	depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
10	select BR2_PACKAGE_ZEROMQ
11	select BR2_PACKAGE_BOOST
12	select BR2_PACKAGE_BOOST_CHRONO
13	select BR2_PACKAGE_BOOST_DATE_TIME
14	select BR2_PACKAGE_BOOST_LOG
15	select BR2_PACKAGE_BOOST_RANDOM
16	select BR2_PACKAGE_BOOST_REGEX
17	select BR2_PACKAGE_BOOST_SYSTEM
18	select BR2_PACKAGE_BOOST_THREAD
19	help
20	  This library provides Boost Asio style bindings for ZeroMQ.
21
22	  https://github.com/zeromq/azmq
23
24comment "azmq needs a toolchain w/ C++11, wchar and NPTL"
25	depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
26	depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 \
27		&& BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS_NPTL)
28
29comment "azmq needs exception_ptr"
30	depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
31