View | Details | Raw Unified | Return to bug 163199
Collapse All | Expand All

(-)mod_fastcgi/Makefile (-1 / +1 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	mod_fastcgi
8
PORTNAME=	mod_fastcgi
9
PORTVERSION=	2.4.6
9
PORTVERSION=	2.4.6
10
PORTREVISION=	2
10
PORTREVISION=	3
11
CATEGORIES=	www
11
CATEGORIES=	www
12
MASTER_SITES=	http://www.fastcgi.com/dist/
12
MASTER_SITES=	http://www.fastcgi.com/dist/
13
13
(-)mod_fastcgi/files/patch-mod_fastcgi.c (+14 lines)
Line 0 Link Here
1
--- mod_fastcgi.c.orig	2011-12-12 15:37:24.211384000 +0800
2
+++ mod_fastcgi.c	2011-12-12 15:37:50.565004000 +0800
3
@@ -754,6 +754,11 @@
4
                 continue;
5
             }
6
 
7
+            if (strcasecmp(name, "Content-Length") == 0) {
8
+                ap_set_content_length(r, strtol(value, NULL, 10));
9
+                continue;
10
+            }
11
+
12
             /* If the script wants them merged, it can do it */
13
             ap_table_add(r->err_headers_out, name, value);
14
             continue;

Return to bug 163199