Config.in 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. comment "zeromq needs a toolchain w/ C++, threads"
  2. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS)
  3. config BR2_PACKAGE_ZEROMQ
  4. bool "zeromq"
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. depends on BR2_TOOLCHAIN_HAS_THREADS
  7. help
  8. ØMQ (ZeroMQ, 0MQ, zmq) looks like an embeddable networking
  9. library but acts like a concurrency framework. It gives you
  10. sockets that carry whole messages across various transports
  11. like in-process, inter- process, TCP, and multicast. You can
  12. connect sockets N-to-N with patterns like fanout, pub-sub,
  13. task distribution, and request-reply. It's fast enough to
  14. be the fabric for clustered products. Its asynchronous I/O
  15. model gives you scalable multicore applications, built as
  16. asynchronous message-processing tasks. It has a score of
  17. language APIs and runs on most operating systems.
  18. ØMQ is from iMatix and is LGPL open source.
  19. http://www.zeromq.org/
  20. if BR2_PACKAGE_ZEROMQ
  21. comment "norm support needs a toolchain w/ dynamic library"
  22. depends on BR2_STATIC_LIBS
  23. config BR2_PACKAGE_ZEROMQ_NORM
  24. bool "NORM support"
  25. depends on !BR2_STATIC_LIBS
  26. select BR2_PACKAGE_NORM
  27. help
  28. Add support for NACK-Oriented Reliable Multicast (RFC 5740)
  29. protocol.
  30. comment "PGM/EPGM support needs a toolchain w/ wchar"
  31. depends on BR2_TOOLCHAIN_HAS_SYNC_2
  32. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  33. depends on !BR2_USE_WCHAR
  34. config BR2_PACKAGE_ZEROMQ_PGM
  35. bool "PGM/EPGM support"
  36. depends on BR2_TOOLCHAIN_HAS_SYNC_2
  37. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  38. depends on BR2_USE_WCHAR # openpgm
  39. select BR2_PACKAGE_OPENPGM
  40. help
  41. Add support for Pragmatic General Multicast protocol (RFC
  42. 3208) implemented either over raw IP packets or UDP
  43. datagrams (encapsulated PGM).
  44. config BR2_PACKAGE_ZEROMQ_DRAFTS
  45. bool "Draft APIs support"
  46. help
  47. Enable unstable draft ZeroMQ APIs
  48. https://pyzmq.readthedocs.io/en/latest/draft.html
  49. config BR2_PACKAGE_ZEROMQ_WEBSOCKET
  50. bool "WebSocket support"
  51. help
  52. Enable WebSocket transport
  53. endif