]> granicus.if.org Git - apache/commitdiff
config.m4: support mod_ext_filter (I'd been using --with-module
authorJeff Trawick <trawick@apache.org>
Mon, 11 Dec 2000 19:02:15 +0000 (19:02 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 11 Dec 2000 19:02:15 +0000 (19:02 +0000)
           until the recent build changes)
mod_ext_filter.c: get rid of a warning

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87287 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/config.m4
modules/experimental/mod_ext_filter.c

index dab447a9a9a5a9cc2db3b9e4545908c5dec0c785..649b6dda1631e148dd3c68453b3627157f1435cb 100644 (file)
@@ -4,5 +4,6 @@ APACHE_MODPATH_INIT(experimental)
 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
index 059c0b12c9c0c1fa41f7778b31d270c7e745d303..5040ab1cf94deba90524a076eab8fb30a28632b4 100644 (file)
@@ -402,7 +402,7 @@ static apr_status_t init_ext_filter_process(ap_filter_t *f)
                                   
     rc = apr_create_process(ctx->proc, 
                             ctx->filter->command, 
-                            ctx->filter->args, 
+                            (const char * const *)ctx->filter->args, 
                             NULL, /* environment */
                             ctx->procattr, 
                             ctx->p);