2015-04-19 20:40:00 +08:00
|
|
|
comment "zeromq needs a toolchain w/ C++, wchar, threads"
|
|
|
|
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \
|
|
|
|
BR2_TOOLCHAIN_HAS_THREADS)
|
2012-03-15 00:38:16 +08:00
|
|
|
|
|
|
|
config BR2_PACKAGE_ZEROMQ
|
|
|
|
bool "zeromq"
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
depends on BR2_USE_WCHAR # util-linux
|
2013-04-07 10:00:33 +08:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2012-03-15 00:38:16 +08:00
|
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
|
|
help
|
|
|
|
ØMQ (ZeroMQ, 0MQ, zmq) looks like an embeddable networking
|
|
|
|
library but acts like a concurrency framework. It gives you
|
|
|
|
sockets that carry whole messages across various transports
|
|
|
|
like in-process, inter- process, TCP, and multicast. You can
|
|
|
|
connect sockets N-to-N with patterns like fanout, pub-sub,
|
2015-04-23 06:14:34 +08:00
|
|
|
task distribution, and request-reply. It's fast enough to
|
2012-03-15 00:38:16 +08:00
|
|
|
be the fabric for clustered products. Its asynchronous I/O
|
|
|
|
model gives you scalable multicore applications, built as
|
|
|
|
asynchronous message-processing tasks. It has a score of
|
|
|
|
language APIs and runs on most operating systems.
|
|
|
|
|
|
|
|
ØMQ is from iMatix and is LGPL open source.
|
|
|
|
|
|
|
|
http://www.zeromq.org/
|
2013-03-04 07:48:12 +08:00
|
|
|
|
2013-12-21 05:31:30 +08:00
|
|
|
if BR2_PACKAGE_ZEROMQ
|
|
|
|
|
2013-03-04 07:48:12 +08:00
|
|
|
config BR2_PACKAGE_ZEROMQ_PGM
|
|
|
|
bool "PGM/EPGM support"
|
2015-03-08 02:51:55 +08:00
|
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2014R1 # openpgm
|
2014-04-18 05:54:01 +08:00
|
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2013R1 # openpgm
|
|
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 # openpgm
|
2013-03-04 07:48:12 +08:00
|
|
|
select BR2_PACKAGE_OPENPGM
|
|
|
|
help
|
|
|
|
Add support for Pragmatic General Multicast protocol (RFC 3208)
|
|
|
|
implemented either over raw IP packets or UDP datagrams
|
|
|
|
(encapsulated PGM). This requires OpenPGM library.
|
2013-12-21 05:31:30 +08:00
|
|
|
|
|
|
|
endif
|