You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@locus.apache.org on 2000/12/11 20:02:17 UTC

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

trawick     00/12/11 11:02:16

  Modified:    modules/experimental config.m4 mod_ext_filter.c
  Log:
  config.m4: support mod_ext_filter (I'd been using --with-module
             until the recent build changes)
  mod_ext_filter.c: get rid of a warning
  
  Revision  Changes    Path
  1.4       +1 -0      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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- config.m4	2000/12/03 07:02:33	1.3
  +++ config.m4	2000/12/11 19:02:14	1.4
  @@ -4,5 +4,6 @@
   APACHE_MODULE(charset_lite, character set translation, , , no)
   APACHE_MODULE(cache, dynamic file caching, , , no)
   APACHE_MODULE(disk_cache, disk caching module, , , no)
  +APACHE_MODULE(ext_filter, external filter module, , , no)
   
   APACHE_MODPATH_FINISH
  
  
  
  1.4       +1 -1      httpd-2.0/modules/experimental/mod_ext_filter.c
  
  Index: mod_ext_filter.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/mod_ext_filter.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- mod_ext_filter.c	2000/11/18 14:55:44	1.3
  +++ mod_ext_filter.c	2000/12/11 19:02:15	1.4
  @@ -402,7 +402,7 @@
                                     
       rc = apr_create_process(ctx->proc, 
                               ctx->filter->command, 
  -                            ctx->filter->args, 
  +                            (const char * const *)ctx->filter->args, 
                               NULL, /* environment */
                               ctx->procattr, 
                               ctx->p);