Config.in 538 B

12345678910111213141516
  1. config BR2_PACKAGE_CPPZMQ
  2. bool "cppzmq"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_INET_IPV6 # zeromq
  5. depends on BR2_LARGEFILE # util-linux
  6. depends on BR2_USE_WCHAR # util-linux
  7. depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq
  8. select BR2_PACKAGE_ZEROMQ
  9. help
  10. C++ binding for zeromq (ZeroMQ, 0MQ, zmq).
  11. http://github.com/zeromq/cppzmq
  12. comment "cppzmq needs a toolchain w/ C++, IPv6, largefile, wchar"
  13. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE \
  14. && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)