Config.in 480 B

123456789101112131415
  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_USE_WCHAR # util-linux
  6. depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq
  7. select BR2_PACKAGE_ZEROMQ
  8. help
  9. C++ binding for zeromq (ZeroMQ, 0MQ, zmq).
  10. http://github.com/zeromq/cppzmq
  11. comment "cppzmq needs a toolchain w/ C++, IPv6, wchar, threads"
  12. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && \
  13. BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)