eaf746eb9e
This adds support for Pragmatic General Multicast protocol on raw IP (PGM, RFC 3208) or UDP frames (EPGM) for use as zeromq reliable multicast transport. The library relies on openpgm package to implement the protocol itself. Signed-off-by: Alexander Lukichev <alexander.lukichev@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
20 lines
506 B
Makefile
20 lines
506 B
Makefile
#############################################################
|
|
#
|
|
# zeromq
|
|
#
|
|
#############################################################
|
|
|
|
ZEROMQ_VERSION = 3.2.2
|
|
ZEROMQ_SITE = http://download.zeromq.org/
|
|
ZEROMQ_INSTALL_STAGING = YES
|
|
ZEROMQ_DEPENDENCIES = util-linux
|
|
ZEROMQ_LICENSE = LGPLv3+ with exceptions
|
|
ZEROMQ_LICENSE_FILES = COPYING COPYING.LESSER
|
|
|
|
ifeq ($(BR2_PACKAGE_ZEROMQ_PGM),y)
|
|
ZEROMQ_DEPENDENCIES += host-pkgconf openpgm
|
|
ZEROMQ_CONF_OPT = --with-system-pgm
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|