Blame modules/http/config.m4

Packit 90a5c9
dnl modules enabled in this directory by default
Packit 90a5c9
Packit 90a5c9
APACHE_MODPATH_INIT(http)
Packit 90a5c9
Packit 90a5c9
http_objects="http_core.lo http_protocol.lo http_request.lo http_filters.lo chunk_filter.lo byterange_filter.lo http_etag.lo"
Packit 90a5c9
Packit 90a5c9
dnl mod_http should only be built as a static module for now.
Packit 90a5c9
dnl this will hopefully be "fixed" at some point in the future by
Packit 90a5c9
dnl refactoring mod_http and moving some things to the core and
Packit 90a5c9
dnl vice versa so that the core does not depend upon mod_http.
Packit 90a5c9
if test "$enable_http" = "yes"; then
Packit 90a5c9
    enable_http="static"
Packit 90a5c9
elif test "$enable_http" = "shared"; then
Packit 90a5c9
    AC_MSG_ERROR([mod_http can not be built as a shared DSO])
Packit 90a5c9
fi
Packit 90a5c9
Packit 90a5c9
APACHE_MODULE(http,[HTTP protocol handling.  The http module is a basic one that enables the server to function as an HTTP server. It is only useful to disable it if you want to use another protocol module instead. Don't disable this module unless you are really sure what you are doing. Note: This module will always be linked statically.], $http_objects, , static)
Packit 90a5c9
APACHE_MODULE(mime, mapping of file-extension to MIME.  Disabling this module is normally not recommended., , , yes)
Packit 90a5c9
Packit 90a5c9
APACHE_MODPATH_FINISH