~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to modules/http/config2.m4

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl modules enabled in this directory by default
 
2
 
 
3
APACHE_MODPATH_INIT(http)
 
4
 
 
5
http_objects="http_core.lo http_protocol.lo http_request.lo http_filters.lo chunk_filter.lo byterange_filter.lo http_etag.lo"
 
6
 
 
7
dnl mod_http should only be built as a static module for now.
 
8
dnl this will hopefully be "fixed" at some point in the future by
 
9
dnl refactoring mod_http and moving some things to the core and
 
10
dnl vice versa so that the core does not depend upon mod_http.
 
11
if test "$enable_http" = "yes"; then
 
12
    enable_http="static"
 
13
elif test "$enable_http" = "shared"; then
 
14
    AC_MSG_ERROR([mod_http can not be built as a shared DSO])
 
15
fi
 
16
 
 
17
APACHE_MODULE(http, HTTP protocol handling, $http_objects, , static)
 
18
APACHE_MODULE(mime, mapping of file-extension to MIME, , , yes)
 
19
 
 
20
APACHE_MODPATH_FINISH