From e13ac0ec8788092c6508636da94fe0198c18dffd Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Wed, 26 May 2010 23:50:11 +0200 Subject: iperf: override bool detection The configure script contains a buggy test for the bool datatype and it's size. This is normally not a big deal as the result isn't used for anything, but when BR2_CONFIG_CACHE (default) is used, the wrong ac_cv_type_bool result is stored in the cache, and other packages like libcurl DO need the bool type, so that breaks the build. Fix it by presetting those tests to sane values. Signed-off-by: Peter Korsgaard --- package/iperf/iperf.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'package/iperf') diff --git a/package/iperf/iperf.mk b/package/iperf/iperf.mk index 10e5a3783..3f8e3fc8c 100644 --- a/package/iperf/iperf.mk +++ b/package/iperf/iperf.mk @@ -14,7 +14,9 @@ IPERF_INSTALL_STAGING = NO IPERF_INSTALL_TARGET = YES IPERF_CONF_ENV = \ - ac_cv_func_malloc_0_nonnull=yes + ac_cv_func_malloc_0_nonnull=yes \ + ac_cv_type_bool=yes \ + ac_cv_sizeof_bool=1 IPERF_CONF_OPT = \ --disable-dependency-tracking \ -- cgit v1.2.3