mirror of
https://github.com/apache/httpd.git
synced 2026-01-26 19:01:35 +03:00
then all modules that can be compiled as shared modules are. This was done by adding a module config specifier, static, which denotes that a module can not be compiled as a DSO. Submitted by: Aaron Bannert <aaron@clove.org> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91262 13f79535-47bb-0310-9956-ffa450edef68
12 lines
339 B
Plaintext
12 lines
339 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"
|
|
|
|
dnl mod_http freaks out when built as a DSO
|
|
APACHE_MODULE(http, HTTP protocol handling, $http_objects, , static)
|
|
APACHE_MODULE(mime, mapping of file-extension to MIME, , , yes)
|
|
|
|
APACHE_MODPATH_FINISH
|