Update to 2.0.11

- Convert to options target helper

Changes:	https://sourceforge.net/projects/iperf2/files/readme.txt/view
Notified by:	Robert McMahon <rjmcmahon@rjmcmahon.com>
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2018-05-26 17:46:33 +00:00
parent d74bf91f7f
commit f07a3aedee
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=470910
3 changed files with 5 additions and 17 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= iperf
PORTVERSION= 2.0.10
PORTREVISION= 1
PORTVERSION= 2.0.11
CATEGORIES= benchmarks
MASTER_SITES= SF/${PORTNAME}2
@ -26,7 +25,7 @@ IPV6_CONFIGURE_ENABLE= ipv6
THREADS_CONFIGURE_ENABLE= threads
THREADS_LDFLAGS= -lpthread
post-install:
post-install-DOCS-on:
${MKDIR} ${STAGEDIR}${DOCSDIR}/
cd ${WRKSRC}/ && ${INSTALL_DATA} README doc/*.gif doc/*.html ${STAGEDIR}${DOCSDIR}/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1502528492
SHA256 (iperf-2.0.10.tar.gz) = 7fe4348dcca313b74e0aa9c34a8ccd713b84a5615b8578f4aa94cedce9891ef2
SIZE (iperf-2.0.10.tar.gz) = 290282
TIMESTAMP = 1527215082
SHA256 (iperf-2.0.11.tar.gz) = b7d650d07c6bb0e357b5938a20e4ac33876012fddb952299c5d321e6958da5d2
SIZE (iperf-2.0.11.tar.gz) = 330923

View File

@ -1,11 +0,0 @@
--- src/Client.cpp.orig 2017-08-09 03:54:14 UTC
+++ src/Client.cpp
@@ -680,7 +680,7 @@ void Client::Run( void ) {
// store datagram ID into buffer
if (isSeqNo64b(mSettings)) {
- mBuf_UDP->id = htonl((reportstruct->packetID & 0xFFFFFFFFFL));
+ mBuf_UDP->id = htonl((reportstruct->packetID & 0xFFFFFFFFL));
mBuf_UDP->id2 = htonl((((reportstruct->packetID & 0xFFFFFFFF00000000LL) >> 32) | 0x80000000L));
} else {
mBuf_UDP->id = htonl(((reportstruct->packetID & 0xFFFFFFFFL) | 0x80000000L));