From 200b2dfa6db19c5907eaabb13411505301e9757a Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Tue, 28 May 2013 09:45:34 +0000 Subject: czmq: prevent selection when ADI Blackfin external toolchains are used czmq fails to build with the Blackfin external toolchains provided by Analog Devices, because their uClibc configuration doesn't include AI_ADDRCONFIG. In order to prevent such build failures to happen, we simply prevent the selection of czmq or one of its reverse dependencies when such toolchains are used. This fixes: http://autobuild.buildroot.org/results/821/82140fac4c2a2cef3f38f06cada8f17fd7f0078b/build-end.log Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/filemq/Config.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'package/filemq') diff --git a/package/filemq/Config.in b/package/filemq/Config.in index d25f03f4b..6f9fdb0c9 100644 --- a/package/filemq/Config.in +++ b/package/filemq/Config.in @@ -8,6 +8,10 @@ config BR2_PACKAGE_FILEMQ depends on BR2_LARGEFILE # util-linux depends on BR2_USE_WCHAR # util-linux depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq + # uClibc toolchains provided by ADI don't have AI_ADDRCONFIG + # support, which is needed by czmq + depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \ + !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1 help FileMQ is a publish-subscribe file service based on 0MQ. -- cgit v1.2.3