Author: wrowe
Date: Fri Jun 6 14:23:05 2008
New Revision: 664136
URL: http://svn.apache.org/viewvc?rev=664136&view=rev
Log:
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.
Modified:
httpd/httpd/trunk/modules/cache/config.m4
Modified: httpd/httpd/trunk/modules/cache/config.m4
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/config.m4?rev=664136&r1=664135&r2=664136&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/config.m4 (original)
+++ httpd/httpd/trunk/modules/cache/config.m4 Fri Jun 6 14:23:05 2008
@@ -11,18 +11,14 @@
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)
|