aboutsummaryrefslogtreecommitdiffstats
path: root/www/lighttpd
diff options
context:
space:
mode:
authorflz <flz@FreeBSD.org>2005-03-03 20:14:54 +0800
committerflz <flz@FreeBSD.org>2005-03-03 20:14:54 +0800
commitdbdddaeda6c7a22aa9fd4e232fea65c3622bfe58 (patch)
treec4c31acf97e0c762ea177959b25e471bccd9e4c9 /www/lighttpd
parenta8bf53a6604a913678b033ee349438f49e97bd4b (diff)
downloadfreebsd-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/Makefile4
-rw-r--r--www/lighttpd/distinfo4
-rw-r--r--www/lighttpd/files/patch-src::mod_cgi.c23
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)) {