Commit 42b8ad2f authored by Ryan Bloom's avatar Ryan Bloom
Browse files

There is a bug in how we sort some hooks, the pre-config hook is one that

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
parent 5e7a4829
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
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]
+0 −4
Original line number Diff line number Diff line
@@ -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