blob: 22ce4f88a31b6bc18226434516b2fe282eff047f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: Makefile,v 1.8 2020/01/26 17:31:50 rillig Exp $
DISTNAME= iperf-3.7
PKGNAME= ${DISTNAME:S/iperf/iperf3/}
PKGREVISION= 1
CATEGORIES= net benchmarks
MASTER_SITES= http://downloads.es.net/pub/iperf/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://software.es.net/iperf/
COMMENT= TCP and UDP bandwidth performance measurement tool
LICENSE= modified-bsd
USE_LANGUAGES= c99
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --disable-profiling
# sctp_bindx() is in headers, but unusable
CONFIGURE_ENV.NetBSD+= ac_cv_header_netinet_sctp_h=no
TEST_TARGET= check
LDFLAGS.SunOS+= -lsocket -lnsl
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|