You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jw...@apache.org on 2002/05/06 02:58:17 UTC

cvs commit: httpd-2.0/modules/experimental config.m4

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)