From: Cliff Woolley Date: Mon, 6 May 2002 00:58:16 +0000 (+0000) Subject: mod_mem_cache needs cache_hash.lo in order to link properly X-Git-Tag: 2.0.37~512 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ad43c1f0b7aef6611e899b3b0703b83615b1637;p=apache mod_mem_cache needs cache_hash.lo in order to link properly git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94934 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/config.m4 b/modules/experimental/config.m4 index 9194444872..20fa4668a8 100644 --- a/modules/experimental/config.m4 +++ b/modules/experimental/config.m4 @@ -15,9 +15,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_hash.lo dnl +" APACHE_MODULE(cache, dynamic file caching, $cache_objs, , no) APACHE_MODULE(disk_cache, disk caching module, , , no) -APACHE_MODULE(mem_cache, memory caching module, , , no) +APACHE_MODULE(mem_cache, memory caching module, $mem_cache_objs, , no) APACHE_MODULE(example, example and demo module, , , no) APACHE_MODULE(ext_filter, external filter module, , , no) APACHE_MODULE(case_filter, example uppercase conversion filter, , , no)