summaryrefslogtreecommitdiff
path: root/www/apache13-fp/files/patch-fh
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-09-27 02:52:26 +0000
committerSteve Price <steve@FreeBSD.org>1999-09-27 02:52:26 +0000
commit936af4387d81e213b5945e8ef5d81205c2b25837 (patch)
tree45e592bed14bc3ee6a21cb1820cf04d2a89dc0cb /www/apache13-fp/files/patch-fh
parentUpdate to version 1.30.4. (diff)
Update to use Apache version 1.3.9. Misc. notes from maintainer:
patch-au corrects a problem when either ResourceConfig/AccessConfig is set to the apache configuration file (${PREFIX}/etc/apache/httpd.conf). Without this patch, if you set the apache server to listen to alterate ports the server would fail to start and the error log would contain: [crit] (48)Address already in use: make_sock: could not bind to port 8000 ResourceConfig/AccessConfig can't be set to /dev/null. The fpsrvadm.exe will not be able to obtain the DocumnetRoot from the ResourceConfig file (/dev/null). PR: 13673 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=21991
Diffstat (limited to 'www/apache13-fp/files/patch-fh')
-rw-r--r--www/apache13-fp/files/patch-fh40
1 files changed, 16 insertions, 24 deletions
diff --git a/www/apache13-fp/files/patch-fh b/www/apache13-fp/files/patch-fh
index 82895f03799b..a5090a058de8 100644
--- a/www/apache13-fp/files/patch-fh
+++ b/www/apache13-fp/files/patch-fh
@@ -1,24 +1,16 @@
-*** src/include/httpd.h.orig Thu May 21 19:37:29 1998
---- src/include/httpd.h Fri May 22 16:57:19 1998
-***************
-*** 689,695 ****
-
- char *unparsed_uri; /* the uri without any parsing performed */
- char *uri; /* the path portion of the URI */
-! char *filename;
- char *path_info;
- char *args; /* QUERY_ARGS, if any */
- struct stat finfo; /* ST_MODE set to zero if no such file */
---- 689,700 ----
-
- char *unparsed_uri; /* the uri without any parsing performed */
- char *uri; /* the path portion of the URI */
-! char *execfilename; /* physical filename to exec */
-! char *filename; /* logical filename to exec -- always the same
-! * except for FrontPage CGI programs where we
-! * will execute the CGI program in
-! * /usr/local/frontpage....
-! */
- char *path_info;
- char *args; /* QUERY_ARGS, if any */
- struct stat finfo; /* ST_MODE set to zero if no such file */
+--- src/include/httpd.h.orig Mon Aug 16 12:57:53 1999
++++ src/include/httpd.h Mon Sep 6 13:12:55 1999
+@@ -774,7 +774,12 @@
+
+ char *unparsed_uri; /* the uri without any parsing performed */
+ char *uri; /* the path portion of the URI */
+- char *filename;
++ char *execfilename; /* physical filename to exec */
++ char *filename; /* logical filename to exec -- always the same
++ * except for FrontPage CGI programs where we
++ * will execute the CGI program in
++ * /usr/local/frontpage....
++ */
+ char *path_info;
+ char *args; /* QUERY_ARGS, if any */
+ struct stat finfo; /* ST_MODE set to zero if no such file */