From 0f1189fc9b9b030e46eda214a266f42685b7bdb4 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Fri, 6 Jun 2008 21:23:05 +0000 Subject: [PATCH] These are declared CACHE_DECLARE and should be consumed from mod_cache by mod_mem_cache. The duplicate cache_util import is a dead giveaway that this was broken. In order to backport, an MMN bump would be required because these cache_pqueue, cache_cache and cache_hash exported functions would be added to the "contract" of functions which are available from mod_cache for third party cache providers. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@664136 13f79535-47bb-0310-9956-ffa450edef68 --- modules/cache/config.m4 | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/modules/cache/config.m4 b/modules/cache/config.m4 index 10b490b0e5..69a0d6413b 100644 --- a/modules/cache/config.m4 +++ b/modules/cache/config.m4 @@ -11,18 +11,14 @@ 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, $mem_cache_objs, , ) +APACHE_MODULE(mem_cache, memory caching module, , , ) AC_DEFUN([CHECK_DISTCACHE], [ AC_MSG_CHECKING(whether Distcache is required) -- 2.40.0