Config.in 1.0 KB

12345678910111213141516171819202122232425
  1. comment "zeromq requires a toolchain with C++, LARGEFILE + WCHAR support"
  2. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_LARGEFILE && BR2_USE_WCHAR)
  3. config BR2_PACKAGE_ZEROMQ
  4. bool "zeromq"
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. depends on BR2_LARGEFILE # util-linux
  7. depends on BR2_USE_WCHAR # util-linux
  8. select BR2_PACKAGE_UTIL_LINUX
  9. select BR2_PACKAGE_UTIL_LINUX_LIBUUID
  10. help
  11. ØMQ (ZeroMQ, 0MQ, zmq) looks like an embeddable networking
  12. library but acts like a concurrency framework. It gives you
  13. sockets that carry whole messages across various transports
  14. like in-process, inter- process, TCP, and multicast. You can
  15. connect sockets N-to-N with patterns like fanout, pub-sub,
  16. task distribution, and request-reply. It's fast enough to
  17. be the fabric for clustered products. Its asynchronous I/O
  18. model gives you scalable multicore applications, built as
  19. asynchronous message-processing tasks. It has a score of
  20. language APIs and runs on most operating systems.
  21. ØMQ is from iMatix and is LGPL open source.
  22. http://www.zeromq.org/