diff options
author | Ryan Bloom <rbb@apache.org> | 2001-04-18 22:56:04 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-04-18 22:56:04 +0200 |
commit | ffe6ad2669fd6ce229230c52d81728060c83b583 (patch) | |
tree | 1f0918c95454ff648fbfd45f2519b4674e0c4b39 /modules/http/config2.m4 | |
parent | This changes the build process as outlined in my email earlier this week. (diff) | |
download | apache2-ffe6ad2669fd6ce229230c52d81728060c83b583.tar.xz apache2-ffe6ad2669fd6ce229230c52d81728060c83b583.zip |
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
Diffstat (limited to 'modules/http/config2.m4')
-rw-r--r-- | modules/http/config2.m4 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/http/config2.m4 b/modules/http/config2.m4 new file mode 100644 index 0000000000..5fec30cc47 --- /dev/null +++ b/modules/http/config2.m4 @@ -0,0 +1,10 @@ +dnl modules enabled in this directory by default + +APACHE_MODPATH_INIT(http) + +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) + +APACHE_MODPATH_FINISH |