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 <jacmet@sunsite.dk>
This commit is contained in:
parent
50685f1ce3
commit
e13ac0ec87
2
CHANGES
2
CHANGES
@ -5,7 +5,7 @@
|
|||||||
Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
|
Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
|
||||||
cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
|
cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
|
||||||
gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
|
gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
|
||||||
gst-plugins-base, gvfs, hal, iconv, icu, libcgicc, libdvdnav,
|
gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc, libdvdnav,
|
||||||
libdvdread, libglade, libglib2, libgtk2, libidn, libmms,
|
libdvdread, libglade, libglib2, libgtk2, libidn, libmms,
|
||||||
libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2, make,
|
libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2, make,
|
||||||
metacity, mtd-utils, mutt, nbd, netsnmp, ntfsprogs, ntp, olsr,
|
metacity, mtd-utils, mutt, nbd, netsnmp, ntfsprogs, ntp, olsr,
|
||||||
|
@ -14,7 +14,9 @@ IPERF_INSTALL_STAGING = NO
|
|||||||
IPERF_INSTALL_TARGET = YES
|
IPERF_INSTALL_TARGET = YES
|
||||||
|
|
||||||
IPERF_CONF_ENV = \
|
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 = \
|
IPERF_CONF_OPT = \
|
||||||
--disable-dependency-tracking \
|
--disable-dependency-tracking \
|
||||||
|
Loading…
Reference in New Issue
Block a user