diff options
author | flz <flz@FreeBSD.org> | 2005-03-03 20:14:54 +0800 |
---|---|---|
committer | flz <flz@FreeBSD.org> | 2005-03-03 20:14:54 +0800 |
commit | dbdddaeda6c7a22aa9fd4e232fea65c3622bfe58 (patch) | |
tree | c4c31acf97e0c762ea177959b25e471bccd9e4c9 /www/lighttpd | |
parent | a8bf53a6604a913678b033ee349438f49e97bd4b (diff) | |
download | freebsd-ports-gnome-dbdddaeda6c7a22aa9fd4e232fea65c3622bfe58.tar.gz freebsd-ports-gnome-dbdddaeda6c7a22aa9fd4e232fea65c3622bfe58.tar.zst freebsd-ports-gnome-dbdddaeda6c7a22aa9fd4e232fea65c3622bfe58.zip |
- Update to 1.3.12.
PR: ports/78351
Submitted by: Hendrik Scholz <hendrik@scholz.net> (maintainer)
Approved by: pav (mentor)
Diffstat (limited to 'www/lighttpd')
-rw-r--r-- | www/lighttpd/Makefile | 4 | ||||
-rw-r--r-- | www/lighttpd/distinfo | 4 | ||||
-rw-r--r-- | www/lighttpd/files/patch-src::mod_cgi.c | 23 |
3 files changed, 4 insertions, 27 deletions
diff --git a/www/lighttpd/Makefile b/www/lighttpd/Makefile index f4d8c2493cd9..c0acceede481 100644 --- a/www/lighttpd/Makefile +++ b/www/lighttpd/Makefile @@ -6,7 +6,7 @@ # PORTNAME= lighttpd -PORTVERSION= 1.3.11 +PORTVERSION= 1.3.12 CATEGORIES= www MASTER_SITES= http://www.lighttpd.net/download/ \ http://dl.fkb.wormulon.net/lighttpd/ \ @@ -33,7 +33,7 @@ USE_OPENSSL= yes CONFIGURE_ARGS+= --with-openssl .endif -MAN1= lighttpd.1 +MAN1= lighttpd.1 spawn-fcgi.1 pre-everything:: .if !defined(WITHOUT_OPENSSL) diff --git a/www/lighttpd/distinfo b/www/lighttpd/distinfo index 5c7ca24a466c..2d8bd3cba14f 100644 --- a/www/lighttpd/distinfo +++ b/www/lighttpd/distinfo @@ -1,2 +1,2 @@ -MD5 (lighttpd-1.3.11.tar.gz) = 730c9b9d743360d23e523968ab4fe7c5 -SIZE (lighttpd-1.3.11.tar.gz) = 670438 +MD5 (lighttpd-1.3.12.tar.gz) = ffd0bc5802646948e2724060031c05b5 +SIZE (lighttpd-1.3.12.tar.gz) = 677919 diff --git a/www/lighttpd/files/patch-src::mod_cgi.c b/www/lighttpd/files/patch-src::mod_cgi.c deleted file mode 100644 index e8c6fc589182..000000000000 --- a/www/lighttpd/files/patch-src::mod_cgi.c +++ /dev/null @@ -1,23 +0,0 @@ ---- src/mod_cgi.c (revision 34) -+++ src/mod_cgi.c (revision 35) -@@ -690,12 +690,14 @@ - - #ifndef __WIN32 - -- /* stat the exec file */ -- if (-1 == (stat(cgi_handler->ptr, &st))) { -- log_error_write(srv, __FILE__, __LINE__, "sbss", -- "stat for cgi-handler", cgi_handler, -- "failed:", strerror(errno)); -- return -1; -+ if (cgi_handler->used > 1) { -+ /* stat the exec file */ -+ if (-1 == (stat(cgi_handler->ptr, &st))) { -+ log_error_write(srv, __FILE__, __LINE__, "sbss", -+ "stat for cgi-handler", cgi_handler, -+ "failed:", strerror(errno)); -+ return -1; -+ } - } - - if (pipe(to_cgi_fds)) { |