From: Ryan Bloom Date: Wed, 18 Apr 2001 20:56:04 +0000 (+0000) Subject: There is a bug in how we sort some hooks, the pre-config hook is one that X-Git-Tag: 2.0.18~205 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ffe6ad2669fd6ce229230c52d81728060c83b583;p=apache 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 --- diff --git a/STATUS b/STATUS index a79496f4fe..069eafc2ca 100644 --- 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 for WIN32/OS2/NW permissions Status: patch brought forward from 1.3.14 WIN32 and OS2 need review [William Rowe, Brian Harvard] diff --git a/modules/http/config.m4 b/modules/http/config2.m4 similarity index 73% rename from modules/http/config.m4 rename to modules/http/config2.m4 index da29de1a79..5fec30cc47 100644 --- a/modules/http/config.m4 +++ b/modules/http/config2.m4 @@ -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