mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 16:09:55 +00:00

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
11 lines
292 B
Plaintext
11 lines
292 B
Plaintext
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
|