diff options
author | Anders Nordby <anders@FreeBSD.org> | 2001-11-22 00:10:56 +0000 |
---|---|---|
committer | Anders Nordby <anders@FreeBSD.org> | 2001-11-22 00:10:56 +0000 |
commit | d43c11d3121b590c370428080789f2f938f09e46 (patch) | |
tree | a84aa6c16e3fb48df7e4939a5332d259404cbde9 /www/thttpd | |
parent | 7a1fc9e9fb1d1891a5fa38bd397fb86d1096e01b (diff) | |
download | ports-d43c11d3121b590c370428080789f2f938f09e46.tar.gz ports-d43c11d3121b590c370428080789f2f938f09e46.zip |
Notes
Diffstat (limited to 'www/thttpd')
-rw-r--r-- | www/thttpd/Makefile | 5 | ||||
-rw-r--r-- | www/thttpd/distinfo | 2 | ||||
-rw-r--r-- | www/thttpd/files/patch-fdwatch.c | 12 |
3 files changed, 4 insertions, 15 deletions
diff --git a/www/thttpd/Makefile b/www/thttpd/Makefile index db29b939e534..9cef4692b303 100644 --- a/www/thttpd/Makefile +++ b/www/thttpd/Makefile @@ -6,14 +6,15 @@ # PORTNAME= thttpd -PORTVERSION= 2.21b +PORTVERSION= 2.22 CATEGORIES= www ipv6 MASTER_SITES= http://www.acme.com/software/thttpd/ \ http://www.freenix.no/~anders/ +DISTNAME= ${PORTNAME}-${PORTVERSION}beta4 DISTFILES= ${DISTNAME}${EXTRACT_SUFX} notes.html EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= anders@FreeBSD.org IGNOREFILES= notes.html diff --git a/www/thttpd/distinfo b/www/thttpd/distinfo index 4b6fff2146af..dc5777bc8f59 100644 --- a/www/thttpd/distinfo +++ b/www/thttpd/distinfo @@ -1,2 +1,2 @@ -MD5 (thttpd-2.21b.tar.gz) = 0041d478af3ab838fae2c1c2a3288c85 +MD5 (thttpd-2.22beta4.tar.gz) = 1124aa13ab57e4939ed94f6a0f8e08ae MD5 (notes.html) = IGNORE diff --git a/www/thttpd/files/patch-fdwatch.c b/www/thttpd/files/patch-fdwatch.c deleted file mode 100644 index 7e5b9182372a..000000000000 --- a/www/thttpd/files/patch-fdwatch.c +++ /dev/null @@ -1,12 +0,0 @@ ---- fdwatch.c.orig Fri Aug 24 00:19:39 2001 -+++ fdwatch.c Fri Aug 24 00:20:30 2001 -@@ -311,6 +311,9 @@ - if ( kqchanges == (struct kevent*) 0 || kqevents == (struct kevent*) 0 || - kqrfdidx == (int*) 0 ) - return -1; -+ memset(kqchanges, '\0', sizeof(struct kevent) * 2 * nfiles); -+ memset(kqevents, '\0', sizeof(struct kevent) * nfiles); -+ memset(kqrfdidx, '\0', sizeof(int) * nfiles); - return 0; - } - |