You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Stanley Gambarin <ga...@OpenMarket.com> on 1997/01/15 19:37:31 UTC

Re: [PATCH] Re: [COMPILE] Possible compilation problem (fwd)

	There is a new version of mod_fastcgi on their website, at
http://www.fastcgi.com/servers/apache/1.4.3/apache-fastcgi.tar.Z
This release includes all of the described compilation fixes, as well
as fixes for OS/2 compilation and casting.  In addition, this release
introduces a number of new features, which are not present in mod_fastcgi.c
distributed with Apache, such as support for running FastCGI applications
on the machines, other than the one running web server.  Unfortunately,
this release did not make it into 1.2b1 of Apache, but I hope that the
it will make it before 1.2 is officially released.  If you have any 
additional questions, feel free to contact me via email at
						gambarin@openmarket.com

						Stanley Gambarin.
					** Current maintainer of mod_fastcgi **

> I think this patch would be preferable.  Actually I'm tempted to submit a
> static-izing patch for all the modules.  I get annoyed by cluttered global
> namespace and the ensuing code maintenance problems.
> 
> Dean
> 
> diff -c -r1.4 mod_fastcgi.c
> *** 1.4	1996/12/28 00:04:52
> --- mod_fastcgi.c	1997/01/15 11:33:49
> ***************
> *** 1799,1805 ****
>    *
>    *----------------------------------------------------------------------
>    */
> ! static char *FastCgiIpcDirCmd(cmd_parms *cmd, void *dummy, char *arg)
>   {
>       uid_t uid;
>       gid_t gid;
> --- 1799,1805 ----
>    *
>    *----------------------------------------------------------------------
>    */
> ! static const char *FastCgiIpcDirCmd(cmd_parms *cmd, void *dummy, char *arg)
>   {
>       uid_t uid;
>       gid_t gid;
> ***************
> *** 2137,2143 ****
>    *
>    *----------------------------------------------------------------------
>    */
> ! static char *AppClassCmd(cmd_parms *cmd, void *dummy, char *arg)
>   {
>       int argc;
>       char **argv = NULL;
> --- 2137,2143 ----
>    *
>    *----------------------------------------------------------------------
>    */
> ! static const char *AppClassCmd(cmd_parms *cmd, void *dummy, char *arg)
>   {
>       int argc;
>       char **argv = NULL;
>