Config.in 478 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_LARGEFILE # util-linux
  6. depends on BR2_USE_WCHAR # util-linux
  7. select BR2_PACKAGE_ZEROMQ
  8. help
  9. C++ binding for zeromq (ZeroMQ, 0MQ, zmq).
  10. http://github.com/zeromq/cppzmq
  11. comment "cppzmq requires a toolchain with C++, IPV6, LARGEFILE and WCHAR support"
  12. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE \
  13. && BR2_USE_WCHAR)