Config.in 961 B

12345678910111213141516171819202122232425262728
  1. config 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_HAS_GCC_BUG_64735 # exception_ptr
  9. select BR2_PACKAGE_ZEROMQ
  10. select BR2_PACKAGE_BOOST
  11. select BR2_PACKAGE_BOOST_CHRONO
  12. select BR2_PACKAGE_BOOST_DATE_TIME
  13. select BR2_PACKAGE_BOOST_LOG
  14. select BR2_PACKAGE_BOOST_RANDOM
  15. select BR2_PACKAGE_BOOST_REGEX
  16. select BR2_PACKAGE_BOOST_SYSTEM
  17. select BR2_PACKAGE_BOOST_THREAD
  18. help
  19. This library provides Boost Asio style bindings for ZeroMQ.
  20. https://github.com/zeromq/azmq
  21. comment "azmq needs a toolchain w/ C++11, wchar and NPTL"
  22. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 \
  23. && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS_NPTL)
  24. comment "azmq needs exception_ptr"
  25. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735