0be744e495
Now that we have libtool-2.2.x patch support, we can get rid of a bunch of _LIBTOOL_PATH = NO, fixing (potential) cross link issues. Notice: php not changed, as it uses a very old 1.5 version for the embedded sqlite, where our buildroot-libtool-v1.5.patch doesn't apply. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
25 lines
577 B
Makefile
25 lines
577 B
Makefile
#############################################################
|
|
#
|
|
# iperf
|
|
#
|
|
#############################################################
|
|
IPERF_VERSION = 2.0.5
|
|
IPERF_SOURCE = iperf-$(IPERF_VERSION).tar.gz
|
|
IPERF_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/iperf
|
|
|
|
IPERF_AUTORECONF = NO
|
|
|
|
IPERF_INSTALL_STAGING = NO
|
|
IPERF_INSTALL_TARGET = YES
|
|
|
|
IPERF_CONF_ENV = \
|
|
ac_cv_func_malloc_0_nonnull=yes \
|
|
ac_cv_type_bool=yes \
|
|
ac_cv_sizeof_bool=1
|
|
|
|
IPERF_CONF_OPT = \
|
|
--disable-dependency-tracking \
|
|
--disable-web100
|
|
|
|
$(eval $(call AUTOTARGETS,package,iperf))
|