summaryrefslogtreecommitdiffstats
path: root/modules/cache
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2008-06-06 23:44:25 +0200
committerWilliam A. Rowe Jr <wrowe@apache.org>2008-06-06 23:44:25 +0200
commit7158876aaf3c0e5b8b5718d4a8a07e6fe3ff6444 (patch)
tree0eb00a3048624e490b32e355dd277fc8d2e79a94 /modules/cache
parentThese are declared CACHE_DECLARE and should be consumed (diff)
downloadapache2-7158876aaf3c0e5b8b5718d4a8a07e6fe3ff6444.tar.xz
apache2-7158876aaf3c0e5b8b5718d4a8a07e6fe3ff6444.zip
Revert prior commit; the flaw is not in exporting all
of these cache_* functions, but in declaring them exported in the first place. _hash, _pqueue and cache_cache are undecorated and were erroniously exported. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@664142 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache')
-rw-r--r--modules/cache/config.m48
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/cache/config.m4 b/modules/cache/config.m4
index 69a0d6413b..10b490b0e5 100644
--- a/modules/cache/config.m4
+++ b/modules/cache/config.m4
@@ -11,14 +11,18 @@ cache_objs="dnl
mod_cache.lo dnl
cache_storage.lo dnl
cache_util.lo dnl
+"
+dnl # list of object files for mod_mem_cache
+mem_cache_objs="dnl
+mod_mem_cache.lo dnl
cache_cache.lo dnl
cache_pqueue.lo dnl
cache_hash.lo dnl
+cache_util.lo dnl
"
-
APACHE_MODULE(cache, dynamic file caching, $cache_objs, , most)
APACHE_MODULE(disk_cache, disk caching module, , , most)
-APACHE_MODULE(mem_cache, memory caching module, , , )
+APACHE_MODULE(mem_cache, memory caching module, $mem_cache_objs, , )
AC_DEFUN([CHECK_DISTCACHE], [
AC_MSG_CHECKING(whether Distcache is required)