Config.in 1.0 KB

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 # boost, zeromq
  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_RANDOM
  15. select BR2_PACKAGE_BOOST_SYSTEM
  16. select BR2_PACKAGE_BOOST_THREAD
  17. help
  18. This library provides Boost Asio style bindings for ZeroMQ.
  19. https://github.com/zeromq/azmq
  20. comment "azmq needs a toolchain w/ C++11, wchar and threads"
  21. depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
  22. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 \
  23. && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)
  24. comment "azmq needs exception_ptr"
  25. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735