Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 59466 invoked by uid 500); 6 May 2002 00:58:18 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 59455 invoked by uid 500); 6 May 2002 00:58:18 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 6 May 2002 00:58:17 -0000 Message-ID: <20020506005817.11288.qmail@icarus.apache.org> From: jwoolley@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/experimental config.m4 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jwoolley 02/05/05 17:58:16 Modified: modules/experimental config.m4 Log: mod_mem_cache needs cache_hash.lo in order to link properly Revision Changes Path 1.20 +6 -1 httpd-2.0/modules/experimental/config.m4 Index: config.m4 =================================================================== RCS file: /home/cvs/httpd-2.0/modules/experimental/config.m4,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -u -r1.19 -r1.20 --- config.m4 6 Jan 2002 00:44:22 -0000 1.19 +++ config.m4 6 May 2002 00:58:16 -0000 1.20 @@ -15,9 +15,14 @@ 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)