diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2018-11-03 01:22:59 +0100 |
---|---|---|
committer | Alexander Couzens <lynxis@fe80.eu> | 2018-11-03 02:36:24 +0100 |
commit | 900005ee75754ba62972ed8da6eba2d6b47e1b7f (patch) | |
tree | b32cfae94eba0f587b4a5de7e7a63800c2e86102 /package | |
parent | 0411813c6f0520dea23a1c4f58f5956c504bf129 (diff) | |
download | upstream-900005ee75754ba62972ed8da6eba2d6b47e1b7f.tar.gz upstream-900005ee75754ba62972ed8da6eba2d6b47e1b7f.tar.bz2 upstream-900005ee75754ba62972ed8da6eba2d6b47e1b7f.zip |
iperf: allow non-ipv6 builds
Add configure argument --disable-ipv6 when ipv6 is deselected.
Add fix-non-ipv6-builds.patch as long there is no new upstream
release.
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Diffstat (limited to 'package')
-rw-r--r-- | package/network/utils/iperf/Makefile | 6 | ||||
-rw-r--r-- | package/network/utils/iperf/patches/0003-fix-non-ipv6-builds.patch | 22 |
2 files changed, 27 insertions, 1 deletions
diff --git a/package/network/utils/iperf/Makefile b/package/network/utils/iperf/Makefile index 6facf7bea7..383eb07949 100644 --- a/package/network/utils/iperf/Makefile +++ b/package/network/utils/iperf/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=iperf PKG_VERSION:=2.0.12 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_HASH:=367f651fb1264b13f6518e41b8a7e08ce3e41b2a1c80e99ff0347561eed32646 @@ -40,6 +40,10 @@ endef TARGET_CFLAGS += -D_GNU_SOURCE CONFIGURE_ARGS += --disable-multicast +ifeq ($(CONFIG_IPV6),) + CONFIGURE_ARGS += --disable-ipv6 +endif + CONFIGURE_VARS += CXXFLAGS="$$$$CXXFLAGS -fno-rtti" CONFIGURE_VARS += LIBS="-lpthread -lm" diff --git a/package/network/utils/iperf/patches/0003-fix-non-ipv6-builds.patch b/package/network/utils/iperf/patches/0003-fix-non-ipv6-builds.patch new file mode 100644 index 0000000000..9d96c1919a --- /dev/null +++ b/package/network/utils/iperf/patches/0003-fix-non-ipv6-builds.patch @@ -0,0 +1,22 @@ +Index: iperf-2.0.12/src/Listener.cpp +=================================================================== +--- iperf-2.0.12.orig/src/Listener.cpp ++++ iperf-2.0.12/src/Listener.cpp +@@ -670,6 +670,7 @@ int Listener::L2_setup (void) { + + // Now optimize packet flow up the raw socket + // Establish the flow BPF to forward up only "connected" packets to this raw socket ++#ifdef HAVE_IPV6 + if (l->sa_family == AF_INET6) { + struct in6_addr *v6peer = SockAddr_get_in6_addr(&server->peer); + struct in6_addr *v6local = SockAddr_get_in6_addr(&server->local); +@@ -682,6 +683,9 @@ int Listener::L2_setup (void) { + WARN_errno( rc == SOCKET_ERROR, "l2 v4in6 connect ip bpf"); + } + } else { ++#else ++ { ++#endif + rc = SockAddr_v4_Connect_BPF(server->mSock, ((struct sockaddr_in *)(l))->sin_addr.s_addr, ((struct sockaddr_in *)(p))->sin_addr.s_addr, ((struct sockaddr_in *)(l))->sin_port, ((struct sockaddr_in *)(p))->sin_port); + WARN_errno( rc == SOCKET_ERROR, "l2 connect ip bpf"); + } |