diff options
author | Ryan Bloom <rbb@apache.org> | 2001-04-18 05:53:34 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-04-18 05:53:34 +0200 |
commit | 70a67b2c260ccea7e840c819b4e156678713caa3 (patch) | |
tree | a031f167f95cd2bc26586f58f85f9e5255fa8af6 /modules/http/config.m4 | |
parent | Tweak a message. No function change. (diff) | |
download | apache2-70a67b2c260ccea7e840c819b4e156678713caa3.tar.xz apache2-70a67b2c260ccea7e840c819b4e156678713caa3.zip |
Move the keepalives field out of the conn_rec and into an HTTP specific
connection record. This also moves some HTTP specific back out of the
core and into the HTTP module.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88881 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http/config.m4')
-rw-r--r-- | modules/http/config.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/http/config.m4 b/modules/http/config.m4 index 6d581e586d..da29de1a79 100644 --- a/modules/http/config.m4 +++ b/modules/http/config.m4 @@ -7,5 +7,8 @@ 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 |