063593b772
See the conclusion about external toolchains during the Buildroot meeting [1]: "In the future, we stick to a single external toolchain version. The Kconfig symbol should not encode the version (avoid legacy handling)" [1] http://elinux.org/index.php?title=Buildroot:DeveloperDaysELCE2015#Report Remove old ADI toolchain handling in glog, openpgm and zeromq. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
698 B
Plaintext
19 lines
698 B
Plaintext
config BR2_PACKAGE_OPENPGM
|
|
bool "openpgm"
|
|
# This toolchain lack required compiler intrinsics
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_WCHAR
|
|
help
|
|
OpenPGM is an open source implementation of the Pragmatic
|
|
General Multicast (PGM) specification in RFC 3208 available at
|
|
www.ietf.org. PGM is a reliable and scalable multicast
|
|
protocol that enables receivers to detect loss, request
|
|
retransmission of lost data, or notify an application of
|
|
unrecoverable loss.
|
|
|
|
https://github.com/steve-o/openpgm/
|
|
|
|
comment "openpgm needs a toolchain w/ wchar, threads"
|
|
depends on !(BR2_TOOLCHAIN_HAS_THREADS && BR2_USE_WCHAR)
|