]> granicus.if.org Git - apache/commitdiff
There is a bug in how we sort some hooks, the pre-config hook is one that
authorRyan Bloom <rbb@apache.org>
Wed, 18 Apr 2001 20:56:04 +0000 (20:56 +0000)
committerRyan Bloom <rbb@apache.org>
Wed, 18 Apr 2001 20:56:04 +0000 (20:56 +0000)
is definately incorrect.  Basically, the first time we call the pre-config
hooks, they are sorted correctly.  However, when we call them the second
time, we use the order that modules are loaded into the server.  This
move basically puts the http_module after mod_log_config in the compiled
server.  It is a hack, and a work-around to allow for my next commit.

When the hook sort issue is solved, this should be re-named to config.m4

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88887 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/http/config2.m4 [moved from modules/http/config.m4 with 73% similarity]

diff --git a/STATUS b/STATUS
index a79496f4fef8b0e29ea9f2d2d044359355112c28..069eafc2ca5a40407d8031e4c2897b89aec266bd 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,5 +1,5 @@
 APACHE 2.0 STATUS:                                             -*-text-*-
-Last modified at [$Date: 2001/04/10 18:05:19 $]
+Last modified at [$Date: 2001/04/18 20:56:03 $]
 
 Release:
 
@@ -25,6 +25,13 @@ RELEASE SHOWSTOPPERS:
 
     WARNING: ALWAYS check srclib/apr/STATUS and srclib/apr-util/STATUS
 
+    * There is a bug in how we sort some hooks, at least the pre-config
+      hook.  The first time we call the hooks, they are in the correct 
+      order, but the second time, we don't sort them correctly.  Currently,
+      the modules/http/config.m4 file has been renamed to 
+      modules/http/config2.m4 to work around this problem, it should moved
+      back when this is fixed.    rbb
+
     * Root all file systems with <Directory /> for WIN32/OS2/NW permissions 
         Status: patch brought forward from 1.3.14
                 WIN32 and OS2 need review [William Rowe, Brian Harvard]
similarity index 73%
rename from modules/http/config.m4
rename to modules/http/config2.m4
index da29de1a798d21656b2df94dbed6129f47f63bb6..5fec30cc47a30e6d86120773a429025887f56fe4 100644 (file)
@@ -7,8 +7,4 @@ http_objects="http_core.lo http_protocol.lo http_request.lo"
 APACHE_MODULE(http, HTTP protocol handling, $http_objects, , yes)
 APACHE_MODULE(mime, mapping of file-extension to MIME, , , yes)
 
-if test "$enable_http" = "yes"; then
-  AC_DEFINE(AP_HTTP_ENABLED, 1, [HTTP is enabled on this server])
-fi
-
 APACHE_MODPATH_FINISH