diff options
author | Sam James <sam@gentoo.org> | 2022-05-23 01:00:14 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-05-23 01:04:23 +0100 |
commit | fd6e19dfb9706f594796bfd04cc0db289aa15032 (patch) | |
tree | f21f6011cc727e3b9adbea062555c2b430ace6f6 /net-analyzer/netperf/files | |
parent | games-roguelike/stone-soup: add 0.29 pre-release 5/22/22 (diff) | |
download | gentoo-fd6e19dfb9706f594796bfd04cc0db289aa15032.tar.gz gentoo-fd6e19dfb9706f594796bfd04cc0db289aa15032.tar.bz2 gentoo-fd6e19dfb9706f594796bfd04cc0db289aa15032.zip |
net-analyzer/netperf: update EAPI 7 -> 8
Also throw in fcommon patch vs appending -fcommon.
Bug: https://bugs.gentoo.org/706694
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/netperf/files')
-rw-r--r-- | net-analyzer/netperf/files/netperf-2.7.0-fcommon.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-analyzer/netperf/files/netperf-2.7.0-fcommon.patch b/net-analyzer/netperf/files/netperf-2.7.0-fcommon.patch new file mode 100644 index 000000000000..0682c76cd89d --- /dev/null +++ b/net-analyzer/netperf/files/netperf-2.7.0-fcommon.patch @@ -0,0 +1,30 @@ +https://github.com/HewlettPackard/netperf/pull/46 +https://bugs.gentoo.org/706694 + +From c6a2e17fe35f0e68823451fedfdf5b1dbecddbe3 Mon Sep 17 00:00:00 2001 +From: Khem Raj <raj.khem@gmail.com> +Date: Wed, 12 Aug 2020 09:57:23 -0700 +Subject: [PATCH] nettest_omni: Remove duplicate variable definitions + +These defines are already defined in nettest_bsd.c and exported by +nettest_bsd.h this should fix build with -fno-common + +Signed-off-by: Khem Raj <raj.khem@gmail.com> +--- a/src/nettest_omni.c ++++ b/src/nettest_omni.c +@@ -458,14 +458,6 @@ static int client_port_max = 65535; + + /* different options for the sockets */ + +-int +- loc_nodelay, /* don't/do use NODELAY locally */ +- rem_nodelay, /* don't/do use NODELAY remotely */ +- loc_sndavoid, /* avoid send copies locally */ +- loc_rcvavoid, /* avoid recv copies locally */ +- rem_sndavoid, /* avoid send copies remotely */ +- rem_rcvavoid; /* avoid recv_copies remotely */ +- + extern int + loc_tcpcork, + rem_tcpcork, + |