66bb10b7b0
This patch lines up the comments in Config.in files that clarify which toolchain options the package depends on. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
772 B
Plaintext
22 lines
772 B
Plaintext
config BR2_PACKAGE_ZYRE
|
|
bool "zyre"
|
|
depends on BR2_INSTALL_LIBSTDCPP # filemq
|
|
depends on BR2_INET_IPV6 # filemq
|
|
depends on BR2_LARGEFILE # filemq
|
|
depends on BR2_USE_WCHAR # filemq
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # filemq
|
|
# uClibc toolchains provided by ADI don't have AI_ADDRCONFIG
|
|
# support, needed by filemq -> czmq
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \
|
|
!BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1
|
|
select BR2_PACKAGE_FILEMQ
|
|
help
|
|
An open-source framework for proximity-based peer-to-peer
|
|
applications.
|
|
|
|
http://zyre.org
|
|
|
|
comment "zyre needs a toolchain w/ C++, IPv6, largefile, wchar, threads"
|
|
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE \
|
|
&& BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)
|