Mailing List Archive

cvs commit: apache-1.3/src CHANGES
rse 98/04/21 10:34:01

Modified: . STATUS Makefile.tmpl
src CHANGES
Log:
Ops, apache_status really is named apache_runtime_status in httpd.conf-dist.

PR: 2105

Revision Changes Path
1.320 +1 -0 apache-1.3/STATUS

Index: STATUS
===================================================================
RCS file: /export/home/cvs/apache-1.3/STATUS,v
retrieving revision 1.319
retrieving revision 1.320
diff -u -r1.319 -r1.320
--- STATUS 1998/04/21 16:00:32 1.319
+++ STATUS 1998/04/21 17:33:58 1.320
@@ -60,6 +60,7 @@
* Ralf/Jim's enhanced "make install" carefulness for DocRoot, PR#2084
* Ralf's back-compat in configure for EXTRA_xxx parameter names
* Ralf's configure fix to avoid side-effects in Configure on exported vars
+ * Ralf's fix for the install-config target to get correct ScoreBoardFile

Available Patches:




1.23 +1 -1 apache-1.3/Makefile.tmpl

Index: Makefile.tmpl
===================================================================
RCS file: /export/home/cvs/apache-1.3/Makefile.tmpl,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- Makefile.tmpl 1998/04/21 14:04:29 1.22
+++ Makefile.tmpl 1998/04/21 17:33:58 1.23
@@ -353,7 +353,7 @@
-e 's;@@ServerRoot@@/proxy;$(localstatedir)/proxy;' \
-e 's;@@ServerRoot@@;$(prefix);' \
-e 's;logs/accept.lock;$(localstatedir)/$(localstatesubdir_run)/httpd.lock;' \
- -e 's;logs/apache_status;$(localstatedir)/$(localstatesubdir_run)/httpd.scoreboard;' \
+ -e 's;logs/apache_runtime_status;$(localstatedir)/$(localstatesubdir_run)/httpd.scoreboard;' \
-e 's;logs/httpd.pid;$(localstatedir)/$(localstatesubdir_run)/httpd.pid;' \
-e 's;logs/access_log;$(localstatedir)/$(localstatesubdir_logs)/access_log;' \
-e 's;logs/error_log;$(localstatedir)/$(localstatesubdir_logs)/error_log;' \



1.786 +3 -0 apache-1.3/src/CHANGES

Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.785
retrieving revision 1.786
diff -u -r1.785 -r1.786
--- CHANGES 1998/04/21 16:55:36 1.785
+++ CHANGES 1998/04/21 17:34:00 1.786
@@ -1,5 +1,8 @@
Changes with Apache 1.3b7

+ *) Fix the path to the ScoreBoardFile in the install-config target, too.
+ [Ralf S. Engelschall] PR#2105
+
*) Let "configure" clear out the users parameters (provided as shell
variables) to avoid side-effects in "src/Configure" when the user
exported them (which is not needed, but some users do it).