FreeBSD Bugzilla – Attachment 161514 Details for
Bug 203355
www/mod_scgi: Update to 1.14 (And mark UnBROKEN)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
svn-diff_mod_scgi
svn_diff_mod_scgi (text/plain), 20.82 KB, created by
Walter Schwarzenfeld
on 2015-09-29 04:51:11 UTC
(
hide
)
Description:
svn-diff_mod_scgi
Filename:
MIME Type:
Creator:
Walter Schwarzenfeld
Created:
2015-09-29 04:51:11 UTC
Size:
20.82 KB
patch
obsolete
>Index: Makefile >=================================================================== >--- Makefile (working copy) >+++ Makefile (.../..) (working copy) >@@ -2,19 +2,18 @@ > # $FreeBSD: head/www/mod_scgi/Makefile 336589 2013-12-15 22:11:20Z ohauer $ > > PORTNAME= mod_scgi >-PORTVERSION= 1.12 >-PORTREVISION= 2 >+PORTVERSION= 1.14 > CATEGORIES= www > MASTER_SITES= http://dryice.name/computer/FreeBSD/distfiles/ > DISTNAME= scgi-${PORTVERSION:S/.a/a/} > >-MAINTAINER= dryice@dryice.name >+MAINTAINER= w.schwarzenfeld@aon.at > COMMENT= Apache 2.2 module that implements the client side of the SCGI protocol > > SCGI_DIR= apache2 > WRKSRC= ${WRKDIR}/${DISTNAME}/${SCGI_DIR} > >-USE_APACHE= 22 >+USE_APACHE= 22+ > AP_FAST_BUILD= yes > AP_GENPLIST= yes > > >Property changes on: Makefile >___________________________________________________________________ >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:keywords >## -1 +0,0 ## >-FreeBSD=%H >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: distinfo >=================================================================== >--- distinfo (working copy) >+++ distinfo (.../..) (working copy) >@@ -1,2 +1,2 @@ >-SHA256 (scgi-1.12.tar.gz) = aac7904154c0cdc1b987365a6b9b84719e36af07a7044d6ced12aa5bb099b754 >-SIZE (scgi-1.12.tar.gz) = 28132 >+SHA256 (scgi-1.14.tar.gz) = 0cde41e4ae58ea666f17f6b1984e8ed8ebaff92cabac4b1b36f86bc47eb18e75 >+SIZE (scgi-1.14.tar.gz) = 29406 > >Property changes on: distinfo >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: files/patch-mod_scgi-1.14-apache-2.4 >=================================================================== >--- files/patch-mod_scgi-1.14-apache-2.4 (working copy) >+++ files/patch-mod_scgi-1.14-apache-2.4 (.../..) (working copy) >@@ -0,0 +1,49 @@ >+--- mod_scgi.c >++++ mod_scgi.c >+@@ -135,16 +135,16 @@ >+ return DECLINED; >+ } >+ >+-static void log_err(const char *file, int line, request_rec *r, >++static void log_err(const char *file, int line, int index, request_rec *r, >+ apr_status_t status, const char *msg) >+ { >+- ap_log_rerror(file, line, APLOG_ERR, status, r, "scgi: %s", msg); >++ ap_log_rerror(file, line, index, APLOG_ERR, status, r, "scgi: %s", msg); >+ } >+ >+-static void log_debug(const char *file, int line, request_rec *r, const >++static void log_debug(const char *file, int line, int index, request_rec *r, const >+ char *msg) >+ { >+- ap_log_rerror(file, line, APLOG_DEBUG, APR_SUCCESS, r, msg); >++ ap_log_rerror(file, line, index, APLOG_DEBUG, APR_SUCCESS, r, "%s", msg); >+ } >+ >+ static char *http2env(apr_pool_t *p, const char *name) >+@@ -312,7 +312,7 @@ >+ int i; >+ apr_status_t rv = 0; >+ apr_port_t port = 0; >+- GET_PORT(port, r->connection->remote_addr); >++ GET_PORT(port, r->useragent_addr); >+ >+ log_debug(APLOG_MARK,r, "sending headers"); >+ t = apr_table_make(r->pool, 40); >+@@ -324,14 +324,14 @@ >+ buf = "0"; >+ add_header(t, "CONTENT_LENGTH", buf); >+ add_header(t, "SCGI", SCGI_PROTOCOL_VERSION); >+- add_header(t, "SERVER_SOFTWARE", ap_get_server_version()); >++ add_header(t, "SERVER_SOFTWARE", ap_get_server_banner()); >+ add_header(t, "SERVER_PROTOCOL", r->protocol); >+ add_header(t, "SERVER_NAME", ap_get_server_name(r)); >+ add_header(t, "SERVER_ADMIN", r->server->server_admin); >+ add_header(t, "SERVER_ADDR", r->connection->local_ip); >+ add_header(t, "SERVER_PORT", apr_psprintf(r->pool, "%u", >+ ap_get_server_port(r))); >+- add_header(t, "REMOTE_ADDR", r->connection->remote_ip); >++ add_header(t, "REMOTE_ADDR", r->useragent_ip); >+ add_header(t, "REMOTE_PORT", apr_psprintf(r->pool, "%d", port)); >+ add_header(t, "REMOTE_USER", r->user); >+ add_header(t, "REQUEST_METHOD", r->method) >\ No newline at end of file >Index: mod_scgi/Makefile >=================================================================== >--- mod_scgi/Makefile (working copy) >+++ mod_scgi/Makefile (.../..) (working copy) >@@ -0,0 +1,21 @@ >+# Created by: Neil Blakey-Milner <nbm@FreeBSD.org> >+# $FreeBSD: head/www/mod_scgi/Makefile 336589 2013-12-15 22:11:20Z ohauer $ >+ >+PORTNAME= mod_scgi >+PORTVERSION= 1.12 >+PORTREVISION= 2 >+CATEGORIES= www >+MASTER_SITES= http://dryice.name/computer/FreeBSD/distfiles/ >+DISTNAME= scgi-${PORTVERSION:S/.a/a/} >+ >+MAINTAINER= dryice@dryice.name >+COMMENT= Apache 2.2 module that implements the client side of the SCGI protocol >+ >+SCGI_DIR= apache2 >+WRKSRC= ${WRKDIR}/${DISTNAME}/${SCGI_DIR} >+ >+USE_APACHE= 22 >+AP_FAST_BUILD= yes >+AP_GENPLIST= yes >+ >+.include <bsd.port.mk> > >Property changes on: mod_scgi/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: mod_scgi/distinfo >=================================================================== >--- mod_scgi/distinfo (working copy) >+++ mod_scgi/distinfo (.../..) (working copy) >@@ -0,0 +1,2 @@ >+SHA256 (scgi-1.12.tar.gz) = aac7904154c0cdc1b987365a6b9b84719e36af07a7044d6ced12aa5bb099b754 >+SIZE (scgi-1.12.tar.gz) = 28132 > >Property changes on: mod_scgi/distinfo >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: mod_scgi/pkg-descr >=================================================================== >--- mod_scgi/pkg-descr (working copy) >+++ mod_scgi/pkg-descr (.../..) (working copy) >@@ -0,0 +1,9 @@ >+An Apache module that implements the client side of the Simple Common >+Gateway Interface protocol. >+ >+The SCGI protocol is a replacement for the Common Gateway Interface >+(CGI) protocol. It is a standard for applications to interface with >+HTTP servers. It is similar to FastCGI but is designed to be easier to >+implement. >+ >+WWW: http://www.mems-exchange.org/software/scgi/ > >Property changes on: mod_scgi/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: mod_scgi/pkg-message >=================================================================== >--- mod_scgi/pkg-message (working copy) >+++ mod_scgi/pkg-message (.../..) (working copy) >@@ -0,0 +1,3 @@ >+******************************************************************** >+* If your mod_scgi seg fault, try disable mod_fastcgi * >+******************************************************************** > >Property changes on: mod_scgi/pkg-message >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: mod_scgi/svn_diff_mod_scgi >=================================================================== >--- mod_scgi/svn_diff_mod_scgi (working copy) >+++ mod_scgi/svn_diff_mod_scgi (.../..) (working copy) >@@ -0,0 +1,186 @@ >+Index: Makefile >+=================================================================== >+--- Makefile (working copy) >++++ Makefile (.../..) (working copy) >+@@ -2,19 +2,18 @@ >+ # $FreeBSD: head/www/mod_scgi/Makefile 336589 2013-12-15 22:11:20Z ohauer $ >+ >+ PORTNAME= mod_scgi >+-PORTVERSION= 1.12 >+-PORTREVISION= 2 >++PORTVERSION= 1.14 >+ CATEGORIES= www >+ MASTER_SITES= http://dryice.name/computer/FreeBSD/distfiles/ >+ DISTNAME= scgi-${PORTVERSION:S/.a/a/} >+ >+-MAINTAINER= dryice@dryice.name >++MAINTAINER= w.schwarzenfeld@aon.at >+ COMMENT= Apache 2.2 module that implements the client side of the SCGI protocol >+ >+ SCGI_DIR= apache2 >+ WRKSRC= ${WRKDIR}/${DISTNAME}/${SCGI_DIR} >+ >+-USE_APACHE= 22 >++USE_APACHE= 22+ >+ AP_FAST_BUILD= yes >+ AP_GENPLIST= yes >+ >+ >+Property changes on: Makefile >+___________________________________________________________________ >+Deleted: svn:eol-style >+## -1 +0,0 ## >+-native >+\ No newline at end of property >+Deleted: svn:keywords >+## -1 +0,0 ## >+-FreeBSD=%H >+\ No newline at end of property >+Deleted: svn:mime-type >+## -1 +0,0 ## >+-text/plain >+\ No newline at end of property >+Index: distinfo >+=================================================================== >+--- distinfo (working copy) >++++ distinfo (.../..) (working copy) >+@@ -1,2 +1,2 @@ >+-SHA256 (scgi-1.12.tar.gz) = aac7904154c0cdc1b987365a6b9b84719e36af07a7044d6ced12aa5bb099b754 >+-SIZE (scgi-1.12.tar.gz) = 28132 >++SHA256 (scgi-1.14.tar.gz) = 0cde41e4ae58ea666f17f6b1984e8ed8ebaff92cabac4b1b36f86bc47eb18e75 >++SIZE (scgi-1.14.tar.gz) = 29406 >+ >+Property changes on: distinfo >+___________________________________________________________________ >+Deleted: fbsd:nokeywords >+## -1 +0,0 ## >+-yes >+\ No newline at end of property >+Deleted: svn:eol-style >+## -1 +0,0 ## >+-native >+\ No newline at end of property >+Deleted: svn:mime-type >+## -1 +0,0 ## >+-text/plain >+\ No newline at end of property >+Index: files/patch-mod_scgi-1.14-apache-2.4 >+=================================================================== >+--- files/patch-mod_scgi-1.14-apache-2.4 (working copy) >++++ files/patch-mod_scgi-1.14-apache-2.4 (.../..) (working copy) >+@@ -0,0 +1,49 @@ >++--- mod_scgi.c >+++++ mod_scgi.c >++@@ -135,16 +135,16 @@ >++ return DECLINED; >++ } >++ >++-static void log_err(const char *file, int line, request_rec *r, >+++static void log_err(const char *file, int line, int index, request_rec *r, >++ apr_status_t status, const char *msg) >++ { >++- ap_log_rerror(file, line, APLOG_ERR, status, r, "scgi: %s", msg); >+++ ap_log_rerror(file, line, index, APLOG_ERR, status, r, "scgi: %s", msg); >++ } >++ >++-static void log_debug(const char *file, int line, request_rec *r, const >+++static void log_debug(const char *file, int line, int index, request_rec *r, const >++ char *msg) >++ { >++- ap_log_rerror(file, line, APLOG_DEBUG, APR_SUCCESS, r, msg); >+++ ap_log_rerror(file, line, index, APLOG_DEBUG, APR_SUCCESS, r, "%s", msg); >++ } >++ >++ static char *http2env(apr_pool_t *p, const char *name) >++@@ -312,7 +312,7 @@ >++ int i; >++ apr_status_t rv = 0; >++ apr_port_t port = 0; >++- GET_PORT(port, r->connection->remote_addr); >+++ GET_PORT(port, r->useragent_addr); >++ >++ log_debug(APLOG_MARK,r, "sending headers"); >++ t = apr_table_make(r->pool, 40); >++@@ -324,14 +324,14 @@ >++ buf = "0"; >++ add_header(t, "CONTENT_LENGTH", buf); >++ add_header(t, "SCGI", SCGI_PROTOCOL_VERSION); >++- add_header(t, "SERVER_SOFTWARE", ap_get_server_version()); >+++ add_header(t, "SERVER_SOFTWARE", ap_get_server_banner()); >++ add_header(t, "SERVER_PROTOCOL", r->protocol); >++ add_header(t, "SERVER_NAME", ap_get_server_name(r)); >++ add_header(t, "SERVER_ADMIN", r->server->server_admin); >++ add_header(t, "SERVER_ADDR", r->connection->local_ip); >++ add_header(t, "SERVER_PORT", apr_psprintf(r->pool, "%u", >++ ap_get_server_port(r))); >++- add_header(t, "REMOTE_ADDR", r->connection->remote_ip); >+++ add_header(t, "REMOTE_ADDR", r->useragent_ip); >++ add_header(t, "REMOTE_PORT", apr_psprintf(r->pool, "%d", port)); >++ add_header(t, "REMOTE_USER", r->user); >++ add_header(t, "REQUEST_METHOD", r->method) >+\ No newline at end of file >+Index: mod_scgi/Makefile >+=================================================================== >+--- mod_scgi/Makefile (working copy) >++++ mod_scgi/Makefile (.../..) (working copy) >+@@ -0,0 +1,21 @@ >++# Created by: Neil Blakey-Milner <nbm@FreeBSD.org> >++# $FreeBSD: head/www/mod_scgi/Makefile 336589 2013-12-15 22:11:20Z ohauer $ >++ >++PORTNAME= mod_scgi >++PORTVERSION= 1.12 >++PORTREVISION= 2 >++CATEGORIES= www >++MASTER_SITES= http://dryice.name/computer/FreeBSD/distfiles/ >++DISTNAME= scgi-${PORTVERSION:S/.a/a/} >++ >++MAINTAINER= dryice@dryice.name >++COMMENT= Apache 2.2 module that implements the client side of the SCGI protocol >++ >++SCGI_DIR= apache2 >++WRKSRC= ${WRKDIR}/${DISTNAME}/${SCGI_DIR} >++ >++USE_APACHE= 22 >++AP_FAST_BUILD= yes >++AP_GENPLIST= yes >++ >++.include <bsd.port.mk> >+ >+Property changes on: mod_scgi/Makefile >+___________________________________________________________________ >+Added: svn:eol-style >+## -0,0 +1 ## >++native >+\ No newline at end of property >+Added: svn:keywords >+## -0,0 +1 ## >++FreeBSD=%H >+\ No newline at end of property >+Added: svn:mime-type >+## -0,0 +1 ## >++text/plain >+\ No newline at end of property >+Index: mod_scgi/distinfo >+=================================================================== >+--- mod_scgi/distinfo (working copy) >++++ mod_scgi/distinfo (.../..) (working copy) >+@@ -0,0 +1,2 @@ >++SHA256 (scgi-1.12.tar.gz) = aac7904154c0cdc1b987365a6b9b84719e36af07a7044d6ced12aa5bb099b754 >++SIZE (scgi-1.12.tar.gz) = 28132 >+ >+Property changes on: mod_scgi/distinfo >+___________________________________________________________________ >+Added: fbsd:nokeywords >+## -0,0 +1 ## >++yes >+\ No newline at end of property >+Added: svn:eol-style >+## -0,0 +1 ## >++native >+\ No newline at end of property >+Added: svn:mime-type >+## -0,0 +1 ## >++text/plain >+\ No newline at end of property >+Index: mod_scgi/pkg-descr >+=================================================================== >Index: pkg-descr >=================================================================== >--- pkg-descr (working copy) >+++ pkg-descr (.../..) (working copy) > >Property changes on: pkg-descr >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: pkg-message >=================================================================== >--- pkg-message (working copy) >+++ pkg-message (.../..) (working copy) > >Property changes on: pkg-message >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: svn_diff_mod_scgi >=================================================================== >--- svn_diff_mod_scgi (working copy) >+++ svn_diff_mod_scgi (.../..) (working copy) >@@ -1,186 +0,0 @@ >-Index: Makefile >-=================================================================== >---- Makefile (working copy) >-+++ Makefile (.../..) (working copy) >-@@ -2,19 +2,18 @@ >- # $FreeBSD: head/www/mod_scgi/Makefile 336589 2013-12-15 22:11:20Z ohauer $ >- >- PORTNAME= mod_scgi >--PORTVERSION= 1.12 >--PORTREVISION= 2 >-+PORTVERSION= 1.14 >- CATEGORIES= www >- MASTER_SITES= http://dryice.name/computer/FreeBSD/distfiles/ >- DISTNAME= scgi-${PORTVERSION:S/.a/a/} >- >--MAINTAINER= dryice@dryice.name >-+MAINTAINER= w.schwarzenfeld@aon.at >- COMMENT= Apache 2.2 module that implements the client side of the SCGI protocol >- >- SCGI_DIR= apache2 >- WRKSRC= ${WRKDIR}/${DISTNAME}/${SCGI_DIR} >- >--USE_APACHE= 22 >-+USE_APACHE= 22+ >- AP_FAST_BUILD= yes >- AP_GENPLIST= yes >- >- >-Property changes on: Makefile >-___________________________________________________________________ >-Deleted: svn:eol-style >-## -1 +0,0 ## >--native >-\ No newline at end of property >-Deleted: svn:keywords >-## -1 +0,0 ## >--FreeBSD=%H >-\ No newline at end of property >-Deleted: svn:mime-type >-## -1 +0,0 ## >--text/plain >-\ No newline at end of property >-Index: distinfo >-=================================================================== >---- distinfo (working copy) >-+++ distinfo (.../..) (working copy) >-@@ -1,2 +1,2 @@ >--SHA256 (scgi-1.12.tar.gz) = aac7904154c0cdc1b987365a6b9b84719e36af07a7044d6ced12aa5bb099b754 >--SIZE (scgi-1.12.tar.gz) = 28132 >-+SHA256 (scgi-1.14.tar.gz) = 0cde41e4ae58ea666f17f6b1984e8ed8ebaff92cabac4b1b36f86bc47eb18e75 >-+SIZE (scgi-1.14.tar.gz) = 29406 >- >-Property changes on: distinfo >-___________________________________________________________________ >-Deleted: fbsd:nokeywords >-## -1 +0,0 ## >--yes >-\ No newline at end of property >-Deleted: svn:eol-style >-## -1 +0,0 ## >--native >-\ No newline at end of property >-Deleted: svn:mime-type >-## -1 +0,0 ## >--text/plain >-\ No newline at end of property >-Index: files/patch-mod_scgi-1.14-apache-2.4 >-=================================================================== >---- files/patch-mod_scgi-1.14-apache-2.4 (working copy) >-+++ files/patch-mod_scgi-1.14-apache-2.4 (.../..) (working copy) >-@@ -0,0 +1,49 @@ >-+--- mod_scgi.c >-++++ mod_scgi.c >-+@@ -135,16 +135,16 @@ >-+ return DECLINED; >-+ } >-+ >-+-static void log_err(const char *file, int line, request_rec *r, >-++static void log_err(const char *file, int line, int index, request_rec *r, >-+ apr_status_t status, const char *msg) >-+ { >-+- ap_log_rerror(file, line, APLOG_ERR, status, r, "scgi: %s", msg); >-++ ap_log_rerror(file, line, index, APLOG_ERR, status, r, "scgi: %s", msg); >-+ } >-+ >-+-static void log_debug(const char *file, int line, request_rec *r, const >-++static void log_debug(const char *file, int line, int index, request_rec *r, const >-+ char *msg) >-+ { >-+- ap_log_rerror(file, line, APLOG_DEBUG, APR_SUCCESS, r, msg); >-++ ap_log_rerror(file, line, index, APLOG_DEBUG, APR_SUCCESS, r, "%s", msg); >-+ } >-+ >-+ static char *http2env(apr_pool_t *p, const char *name) >-+@@ -312,7 +312,7 @@ >-+ int i; >-+ apr_status_t rv = 0; >-+ apr_port_t port = 0; >-+- GET_PORT(port, r->connection->remote_addr); >-++ GET_PORT(port, r->useragent_addr); >-+ >-+ log_debug(APLOG_MARK,r, "sending headers"); >-+ t = apr_table_make(r->pool, 40); >-+@@ -324,14 +324,14 @@ >-+ buf = "0"; >-+ add_header(t, "CONTENT_LENGTH", buf); >-+ add_header(t, "SCGI", SCGI_PROTOCOL_VERSION); >-+- add_header(t, "SERVER_SOFTWARE", ap_get_server_version()); >-++ add_header(t, "SERVER_SOFTWARE", ap_get_server_banner()); >-+ add_header(t, "SERVER_PROTOCOL", r->protocol); >-+ add_header(t, "SERVER_NAME", ap_get_server_name(r)); >-+ add_header(t, "SERVER_ADMIN", r->server->server_admin); >-+ add_header(t, "SERVER_ADDR", r->connection->local_ip); >-+ add_header(t, "SERVER_PORT", apr_psprintf(r->pool, "%u", >-+ ap_get_server_port(r))); >-+- add_header(t, "REMOTE_ADDR", r->connection->remote_ip); >-++ add_header(t, "REMOTE_ADDR", r->useragent_ip); >-+ add_header(t, "REMOTE_PORT", apr_psprintf(r->pool, "%d", port)); >-+ add_header(t, "REMOTE_USER", r->user); >-+ add_header(t, "REQUEST_METHOD", r->method) >-\ No newline at end of file >-Index: mod_scgi/Makefile >-=================================================================== >---- mod_scgi/Makefile (working copy) >-+++ mod_scgi/Makefile (.../..) (working copy) >-@@ -0,0 +1,21 @@ >-+# Created by: Neil Blakey-Milner <nbm@FreeBSD.org> >-+# $FreeBSD: head/www/mod_scgi/Makefile 336589 2013-12-15 22:11:20Z ohauer $ >-+ >-+PORTNAME= mod_scgi >-+PORTVERSION= 1.12 >-+PORTREVISION= 2 >-+CATEGORIES= www >-+MASTER_SITES= http://dryice.name/computer/FreeBSD/distfiles/ >-+DISTNAME= scgi-${PORTVERSION:S/.a/a/} >-+ >-+MAINTAINER= dryice@dryice.name >-+COMMENT= Apache 2.2 module that implements the client side of the SCGI protocol >-+ >-+SCGI_DIR= apache2 >-+WRKSRC= ${WRKDIR}/${DISTNAME}/${SCGI_DIR} >-+ >-+USE_APACHE= 22 >-+AP_FAST_BUILD= yes >-+AP_GENPLIST= yes >-+ >-+.include <bsd.port.mk> >- >-Property changes on: mod_scgi/Makefile >-___________________________________________________________________ >-Added: svn:eol-style >-## -0,0 +1 ## >-+native >-\ No newline at end of property >-Added: svn:keywords >-## -0,0 +1 ## >-+FreeBSD=%H >-\ No newline at end of property >-Added: svn:mime-type >-## -0,0 +1 ## >-+text/plain >-\ No newline at end of property >-Index: mod_scgi/distinfo >-=================================================================== >---- mod_scgi/distinfo (working copy) >-+++ mod_scgi/distinfo (.../..) (working copy) >-@@ -0,0 +1,2 @@ >-+SHA256 (scgi-1.12.tar.gz) = aac7904154c0cdc1b987365a6b9b84719e36af07a7044d6ced12aa5bb099b754 >-+SIZE (scgi-1.12.tar.gz) = 28132 >- >-Property changes on: mod_scgi/distinfo >-___________________________________________________________________ >-Added: fbsd:nokeywords >-## -0,0 +1 ## >-+yes >-\ No newline at end of property >-Added: svn:eol-style >-## -0,0 +1 ## >-+native >-\ No newline at end of property >-Added: svn:mime-type >-## -0,0 +1 ## >-+text/plain >-\ No newline at end of property >-Index: mod_scgi/pkg-descr >-===================================================================
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 203355
:
161404
|
161448
|
161514
|
161515
|
161516
|
161517
|
161532
|
161534
|
161535
|
161536
|
161549
|
161569
|
161893