7cf8adc039
The original site is gone. Fixes: http://autobuild.buildroot.net/results/8d4a2ef5a7f50ea21b844d6cf806bb83016ae17b/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
26 lines
767 B
Makefile
26 lines
767 B
Makefile
################################################################################
|
|
#
|
|
# netperf
|
|
#
|
|
################################################################################
|
|
|
|
NETPERF_VERSION = 2.7.0
|
|
NETPERF_SITE = http://sources.buildroot.org/netperf
|
|
NETPERF_SOURCE = netperf-$(NETPERF_VERSION).tar.bz2
|
|
# gcc 5+ defaults to gnu99 which breaks netperf
|
|
NETPERF_CONF_ENV = \
|
|
ac_cv_func_setpgrp_void=set \
|
|
CFLAGS="$(TARGET_CFLAGS) -std=gnu89"
|
|
NETPERF_CONF_OPTS = --enable-demo=yes
|
|
NETPERF_LICENSE = netperf license
|
|
NETPERF_LICENSE_FILES = COPYING
|
|
|
|
define NETPERF_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 $(@D)/src/netperf \
|
|
$(TARGET_DIR)/usr/bin/netperf
|
|
$(INSTALL) -m 0755 $(@D)/src/netserver \
|
|
$(TARGET_DIR)/usr/bin/netserver
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|