diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-15 13:13:22 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-15 13:13:22 +0000 |
commit | d9fff15a6132424cbabafb17792a3bb2baf487ed (patch) | |
tree | d50a80a01fd72e556cc3ea841117fab90bf15e3f /benchmarks | |
parent | 9914ec42f7586b0cd0b5bf83e5fc16b2df37f5cd (diff) | |
download | ports-d9fff15a6132424cbabafb17792a3bb2baf487ed.tar.gz ports-d9fff15a6132424cbabafb17792a3bb2baf487ed.zip |
- Update to 1.1rc2
PR: ports/85980
Submitted by: Hendrik Scholz <hendrik@scholz.net>
Approved by: Jesper Dalberg <jdalberg@gmail.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=142814
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/sipp/Makefile | 4 | ||||
-rw-r--r-- | benchmarks/sipp/distinfo | 4 | ||||
-rw-r--r-- | benchmarks/sipp/files/patch-comp.c | 21 | ||||
-rw-r--r-- | benchmarks/sipp/files/patch-comp.h | 12 |
4 files changed, 25 insertions, 16 deletions
diff --git a/benchmarks/sipp/Makefile b/benchmarks/sipp/Makefile index 0aadbb5aaa58..24e49856feac 100644 --- a/benchmarks/sipp/Makefile +++ b/benchmarks/sipp/Makefile @@ -6,11 +6,11 @@ # PORTNAME= sipp -PORTVERSION= 1.0 +PORTVERSION= 1.1.r2 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= sipp -DISTNAME= ${PORTNAME}.${PORTVERSION} +DISTNAME= ${PORTNAME}.1.1rc2 MAINTAINER= jesper@jdn.dk COMMENT= SIP testing tool diff --git a/benchmarks/sipp/distinfo b/benchmarks/sipp/distinfo index b05faf840901..61e189052ed1 100644 --- a/benchmarks/sipp/distinfo +++ b/benchmarks/sipp/distinfo @@ -1,2 +1,2 @@ -MD5 (sipp.1.0.tar.gz) = 8866e9af0d3bc29e91ebb6eab89a7f1f -SIZE (sipp.1.0.tar.gz) = 69330 +MD5 (sipp.1.1rc2.tar.gz) = 37e095368ff616c9cace03590705ca7c +SIZE (sipp.1.1rc2.tar.gz) = 86456 diff --git a/benchmarks/sipp/files/patch-comp.c b/benchmarks/sipp/files/patch-comp.c new file mode 100644 index 000000000000..2b687ac9328f --- /dev/null +++ b/benchmarks/sipp/files/patch-comp.c @@ -0,0 +1,21 @@ +--- comp.c.orig Sun Sep 11 18:39:50 2005 ++++ comp.c Sun Sep 11 18:40:09 2005 +@@ -40,15 +40,15 @@ + } + + *(void **)(&comp_compress) = dlsym(handle, "comp_compress"); +- if((error = dlerror())) ++ if((error = (char *) dlerror())) + { strcpy(comp_error, error); return comp_error; } + + *(void **)(&comp_uncompress) = dlsym(handle, "comp_uncompress"); +- if((error = dlerror())) ++ if((error = (char *) dlerror())) + { strcpy(comp_error, error); return comp_error; } + + *(void **)(&comp_free) = dlsym(handle, "comp_free"); +- if((error = dlerror())) ++ if((error = (char *) dlerror())) + { strcpy(comp_error, error); return comp_error; } + + return 0; diff --git a/benchmarks/sipp/files/patch-comp.h b/benchmarks/sipp/files/patch-comp.h deleted file mode 100644 index d96897196d6f..000000000000 --- a/benchmarks/sipp/files/patch-comp.h +++ /dev/null @@ -1,12 +0,0 @@ ---- comp.h.orig Thu Jun 17 08:32:56 2004 -+++ comp.h Thu Jun 17 08:33:04 2004 -@@ -19,6 +19,9 @@ - * From Hewlett Packard Company. - */ - -+#if __FreeBSD__ < 5 -+#include <sys/types.h> -+#endif - #include <sys/socket.h> - - #ifdef __cplusplus |