coar 98/03/17 05:08:56
Modified: . STATUS
src CHANGES
src/helpers UpdateHide
src/include conf.h hide.h
Log:
Make sure that include/hide.h is included always. Dependencies
from "make depend" are now stable regardless of the rule's setting.
Revision Changes Path
1.195 +1 -4 apache-1.3/STATUS
Index: STATUS
===================================================================
RCS file: /export/home/cvs/apache-1.3/STATUS,v
retrieving revision 1.194
retrieving revision 1.195
diff -u -r1.194 -r1.195
--- STATUS 1998/03/17 12:46:36 1.194
+++ STATUS 1998/03/17 13:08:49 1.195
@@ -94,13 +94,10 @@
* Marc's mod_proxy was not clearing the Proxy-Connection header
* Dean's API_EXPORT and CORE_EXPORT cleanup for core functions
* Ralf's new ApacheBench support program (src/support/ab.c)
+ * Ken's change HIDE default to "yes", always include hide.h
Available Patches:
- * M.D.Parker's [PATCH] mod_status/1448: Status Information have version
- <[EMAIL PROTECTED]>
- Status: Dean +1, Martin +0 (duplicates /server-info?server),
- Alexei -1 (shared lib concerns)
Concepts:
1.720 +7 -1 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.719
retrieving revision 1.720
diff -u -r1.719 -r1.720
--- CHANGES 1998/03/17 12:46:38 1.719
+++ CHANGES 1998/03/17 13:08:50 1.720
@@ -1,5 +1,11 @@
Changes with Apache 1.3b6
+ *) The default for the HIDE rule is now "yes" to aid portability, and
+ include/hide.h is always included. It doesn't do anything if the
+ rule is "no" but the dependencies don't change now regardless.
+ Previously, a "make depend" would result in different dependencies
+ according to how the rule was set. [Ken Coar]
+
*) Add the new ApacheBench program "ab" to src/support/: This is derived
from the ZeusBench benchmarking program and can be used to determine the
response performance of an Apache installation. This version is
@@ -173,7 +179,7 @@
at a different time from the core, the SERVER_VERSION and
SERVER_BUILT symbols have been abstracted through the new
API routines apapi_get_server_version() and apapi_get_server_built().
- [Ken Coar]
+ [Ken Coar] PR#1448
*) WIN32: Preserve trailing slash in canonical path (and hence
in PATH_INFO). [Paul Sutton, Ben Laurie]
1.9 +1 -1 apache-1.3/src/helpers/UpdateHide
Index: UpdateHide
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/helpers/UpdateHide,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- UpdateHide 1998/03/17 08:20:48 1.8
+++ UpdateHide 1998/03/17 13:08:53 1.9
@@ -74,7 +74,7 @@
# configuration
$listbegin = '\n#ifdef HIDE\n';
-$listend = '\n#endif\n';
+$listend = '\n#endif /* HIDE */\n';
@excluded = qw(
main errno environ optarg
dlclose dlerror dlopen dlsym
1.192 +6 -2 apache-1.3/src/include/conf.h
Index: conf.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/conf.h,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- conf.h 1998/03/17 07:54:10 1.191
+++ conf.h 1998/03/17 13:08:54 1.192
@@ -879,9 +879,13 @@
#include <regex.h>
#endif
-#ifdef HIDE
+/* We always include the name-concealer file, even if stealth-mode
+ * is off. This keeps the dependencies the same regardless of the
+ * setting of the HIDE rule. hide.h either does its thing or not
+ * internally depending on the rule, so it's safe to include under
+ * all circumstances.
+ */
#include "hide.h"
-#endif
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
1.14 +1 -1 apache-1.3/src/include/hide.h
Index: hide.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/hide.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- hide.h 1998/03/17 08:22:40 1.13
+++ hide.h 1998/03/17 13:08:55 1.14
@@ -487,7 +487,7 @@
/*
__________________________________________________________________________
*
* DO NOT EDIT ANYTHING ABOVE THIS LINE - Any changes made here will be
lost!
- * The section below is updated by running the script hide.pl
+ * The section above is updated by running the script Helpers/UpdateHide
*/
#endif /* !APACHE_HTTP_HIDE_H */