diff options
author | silby <silby@FreeBSD.org> | 2003-12-09 16:17:08 +0800 |
---|---|---|
committer | silby <silby@FreeBSD.org> | 2003-12-09 16:17:08 +0800 |
commit | f6d1904d7443f54dc6a10f6d0547dbd5f7fe96de (patch) | |
tree | 606eb6fd68e9181d154151057bfb6c7477d9c123 /www | |
parent | 3ae0b054a317b4a99ea3a6b23d0c0140010ac818 (diff) | |
download | freebsd-ports-gnome-f6d1904d7443f54dc6a10f6d0547dbd5f7fe96de.tar.gz freebsd-ports-gnome-f6d1904d7443f54dc6a10f6d0547dbd5f7fe96de.tar.zst freebsd-ports-gnome-f6d1904d7443f54dc6a10f6d0547dbd5f7fe96de.zip |
Update http_load to 20020104 from 20010405; remove patch-idle as it has
been integrated into http_load. Also remove the maintainer, as the port
was quite out of date.
Diffstat (limited to 'www')
-rw-r--r-- | www/http_load/Makefile | 7 | ||||
-rw-r--r-- | www/http_load/distinfo | 2 | ||||
-rw-r--r-- | www/http_load/files/patch-idle | 42 |
3 files changed, 4 insertions, 47 deletions
diff --git a/www/http_load/Makefile b/www/http_load/Makefile index 0f7f52025346..838ed9d3618e 100644 --- a/www/http_load/Makefile +++ b/www/http_load/Makefile @@ -6,15 +6,14 @@ # PORTNAME= http_load -PORTVERSION= 20010405 +PORTVERSION= 20020104 CATEGORIES= www MASTER_SITES= http://www.acme.com/software/http_load/ -DISTNAME= ${PORTNAME}-05apr2001 +DISTNAME= ${PORTNAME}-04jan2002 -MAINTAINER= ask@valueclick.com COMMENT= Multiprocessing http performance test client -WRKSRC= ${WRKDIR}/http_load +WRKSRC= ${WRKDIR}/http_load-04jan2002 MAKEFILE= ${FILESDIR}/Makefile.bsd MAN1= http_load.1 diff --git a/www/http_load/distinfo b/www/http_load/distinfo index 7e11d79f24bf..0bd4a885eef6 100644 --- a/www/http_load/distinfo +++ b/www/http_load/distinfo @@ -1 +1 @@ -MD5 (http_load-05apr2001.tar.gz) = 69e2269ae71692b12d1db64eadbcf8a0 +MD5 (http_load-04jan2002.tar.gz) = 546f78d8ecbe13537cd7e1c65eb21281 diff --git a/www/http_load/files/patch-idle b/www/http_load/files/patch-idle deleted file mode 100644 index 720423a4ef00..000000000000 --- a/www/http_load/files/patch-idle +++ /dev/null @@ -1,42 +0,0 @@ ---- http_load.c Thu Apr 5 21:07:27 2001 -+++ http_load.c Thu Apr 26 16:11:40 2001 -@@ -139,2 +139,3 @@ - static int do_checksum, do_throttle, do_verbose, do_jitter, do_proxy; -+static int idle_secs = IDLE_SECS; - static float throttle; -@@ -311,2 +312,12 @@ - } -+ else if ( strncmp( argv[argn], "-timeout", sizeof("-timeout") ) == 0 && argn + 1 < argc ) -+ { -+ idle_secs = atoi( argv[++argn] ); -+ if ( idle_secs < 1 ) -+ { -+ (void) fprintf( -+ stderr, "%s: timeout seconds must be at least 1\n", argv0 ); -+ exit( 1 ); -+ } -+ } - else -@@ -459,2 +470,4 @@ - (void) fprintf( stderr, -+ " -timeout N\n" ); -+ (void) fprintf( stderr, - " -fetches N | -seconds N\n" ); -@@ -629,3 +642,3 @@ - connections[cnum].idle_timer = tmr_create( -- nowP, idle_connection, client_data, IDLE_SECS * 1000L, 0 ); -+ nowP, idle_connection, client_data, idle_secs * 1000L, 0 ); - connections[cnum].wakeup_timer = (Timer*) 0; ---- http_load.1 Fri Mar 30 22:42:13 2001 -+++ http_load.1 Thu Apr 26 16:27:09 2001 -@@ -10,2 +10,4 @@ - .RB [ -verbose ] -+.RB [ -timeout -+.IR seconds ] - .RI ( -@@ -48,2 +50,5 @@ - The -proxy flag lets you run http_load through a web proxy. -+.PP -+The -timeout flag specifies the amount of seconds to wait for request. -+Default is a compile-time define. (Usually -- 60 seconds). - .PP |