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

« back to all changes in this revision

Viewing changes to modules/cache/config.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
dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])
 
4
 
 
5
APACHE_MODPATH_INIT(cache)
 
6
 
 
7
APACHE_MODULE(file_cache, File cache, , , no)
 
8
 
 
9
dnl #  list of object files for mod_cache
 
10
cache_objs="dnl
 
11
mod_cache.lo dnl
 
12
cache_storage.lo dnl
 
13
cache_util.lo dnl
 
14
"
 
15
dnl #  list of object files for mod_mem_cache
 
16
mem_cache_objs="dnl
 
17
mod_mem_cache.lo dnl
 
18
cache_cache.lo dnl
 
19
cache_pqueue.lo dnl
 
20
cache_hash.lo dnl
 
21
"
 
22
APACHE_MODULE(cache, dynamic file caching, $cache_objs, , no)
 
23
APACHE_MODULE(disk_cache, disk caching module, , , no)
 
24
APACHE_MODULE(mem_cache, memory caching module, $mem_cache_objs, , no)
 
25
 
 
26
APACHE_MODPATH_FINISH