Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 67214 invoked by uid 500); 10 Feb 2001 15:01:18 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 67203 invoked by uid 500); 10 Feb 2001 15:01:17 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 10 Feb 2001 15:01:16 -0000 Message-ID: <20010210150116.67199.qmail@apache.org> From: trawick@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/generators mod_info.c trawick 01/02/10 07:01:16 Modified: modules/experimental mod_charset_lite.c mod_ext_filter.c modules/generators mod_info.c Log: get rid of some warnings and an undefined reference which crept into some modules overnight Revision Changes Path 1.41 +3 -0 httpd-2.0/modules/experimental/mod_charset_lite.c Index: mod_charset_lite.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/experimental/mod_charset_lite.c,v retrieving revision 1.40 retrieving revision 1.41 diff -u -r1.40 -r1.41 --- mod_charset_lite.c 2001/02/10 00:33:37 1.40 +++ mod_charset_lite.c 2001/02/10 15:01:16 1.41 @@ -78,6 +78,9 @@ #include "apr_buckets.h" #include "util_filter.h" #include "apr_strings.h" +#include "apr_lib.h" +#define APR_WANT_STRFUNC +#include "apr_want.h" #ifndef APACHE_XLATE #error mod_charset_lite cannot work without APACHE_XLATE enabled 1.10 +3 -3 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.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- mod_ext_filter.c 2001/02/10 00:33:37 1.9 +++ mod_ext_filter.c 2001/02/10 15:01:16 1.10 @@ -69,9 +69,9 @@ #include "util_filter.h" #include "apr_strings.h" #include "apr_hash.h" -#if APR_HAVE_STRINGS_H -#include -#endif +#include "apr_lib.h" +#define APR_WANT_STRFUNC +#include "apr_want.h" typedef struct ef_server_t { apr_pool_t *p; 1.26 +3 -4 httpd-2.0/modules/generators/mod_info.c Index: mod_info.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/generators/mod_info.c,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- mod_info.c 2001/02/10 03:03:18 1.25 +++ mod_info.c 2001/02/10 15:01:16 1.26 @@ -91,10 +91,9 @@ #include "http_main.h" #include "http_protocol.h" #include "util_script.h" - -#if APR_HAVE_STRINGS_H -#include -#endif +#include "apr_lib.h" +#define APR_WANT_STRFUNC +#include "apr_want.h" typedef struct { const char *name; /* matching module name */