upgrade to netpipe 2.4;

--
From: jason@
This commit is contained in:
brad 2000-08-25 00:11:42 +00:00
parent b4ae0e5cb1
commit a13b0d6f8e
3 changed files with 16 additions and 16 deletions

View File

@ -1,10 +1,10 @@
# $OpenBSD: Makefile,v 1.8 2000/04/08 20:37:25 espie Exp $ # $OpenBSD: Makefile,v 1.9 2000/08/25 00:11:42 brad Exp $
# $FreeBSD: Makefile,v 1.2 1999/03/03 03:48:56 jkoshy Exp $ # $FreeBSD: Makefile,v 1.2 1999/03/03 03:48:56 jkoshy Exp $
DISTNAME= netpipe-2.3 DISTNAME= netpipe-2.4
CATEGORIES= benchmarks net CATEGORIES= benchmarks net
MASTER_SITES= ftp://ftp.scl.ameslab.gov/pub/netpipe/ \ NEED_VERSION= 1.320
http://people.freebsd.org/~jkoshy/PORTS/ MASTER_SITES= ftp://ftp.scl.ameslab.gov/pub/netpipe/
MAINTAINER= brad@openbsd.org MAINTAINER= brad@openbsd.org
@ -12,8 +12,8 @@ PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes PERMIT_DISTFILES_FTP= Yes
MAKE_FLAGS= CC='${CC}' CFLAGS='${CFLAGS}'
FAKE= Yes MAKE_FLAGS= CC="${CC}" CFLAGS="${CFLAGS} -DHAVE_GETRUSAGE"
ALL_TARGET= NPtcp ALL_TARGET= NPtcp

View File

@ -1,3 +1,3 @@
MD5 (netpipe-2.3.tar.gz) = cf166ac7ccab491cd68ef75e0e6f466d MD5 (netpipe-2.4.tar.gz) = 0a3a868a122b526a7adeea08ca3422ee
RMD160 (netpipe-2.3.tar.gz) = 40074a5f71567c7c4ad373839af436eaf6d42491 RMD160 (netpipe-2.4.tar.gz) = a7316d7151b5eb48a6ddc4fd48c8ecfc207df9a4
SHA1 (netpipe-2.3.tar.gz) = 7ae6372899a38b1dea1f46b57549da5413f38609 SHA1 (netpipe-2.4.tar.gz) = 1d5c795c912dfbf9b48c0a7fc0e751ed521a760b

View File

@ -1,14 +1,14 @@
--- netpipe.h.orig Wed Oct 28 09:42:43 1998 --- netpipe.h.orig Thu Aug 24 19:59:51 2000
+++ netpipe.h Sat Jan 22 22:20:35 2000 +++ netpipe.h Thu Aug 24 20:00:40 2000
@@ -19,6 +19,7 @@ @@ -20,6 +20,7 @@
#include <stdio.h> #include <stdlib.h> /* malloc(3) */
#include <string.h> #include <string.h>
#include <sys/types.h> #include <sys/types.h>
+#include <sys/param.h> +#include <sys/param.h>
#include <sys/time.h> /* struct timeval */ #include <sys/time.h> /* struct timeval */
#include <stdlib.h> /* malloc(3) */ #ifdef HAVE_GETRUSAGE
#include <sys/resource.h>
@@ -37,8 +38,12 @@ @@ -38,8 +39,12 @@
#define MAXINT 2147483647 #define MAXINT 2147483647
#define ABS(x) (((x) < 0)?(-(x)):(x)) #define ABS(x) (((x) < 0)?(-(x)):(x))