]> granicus.if.org Git - apache/commitdiff
get rid of some warnings and an undefined reference which crept into
authorJeff Trawick <trawick@apache.org>
Sat, 10 Feb 2001 15:01:16 +0000 (15:01 +0000)
committerJeff Trawick <trawick@apache.org>
Sat, 10 Feb 2001 15:01:16 +0000 (15:01 +0000)
some modules overnight

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

modules/experimental/mod_charset_lite.c
modules/experimental/mod_ext_filter.c
modules/generators/mod_info.c

index 5d6de1ba4dd8b5f273efc35329b289b585d7119f..da3d19b9f73a1759c690228a8dcb44161735fb16 100644 (file)
@@ -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
index 79b92fb163de7bc7b56f3b174c85b8fdb6a36fe0..fd96608fc6c7f2c0534822621eb3692fde6797e7 100644 (file)
@@ -69,9 +69,9 @@
 #include "util_filter.h"
 #include "apr_strings.h"
 #include "apr_hash.h"
-#if APR_HAVE_STRINGS_H
-#include <strings.h>
-#endif
+#include "apr_lib.h"
+#define APR_WANT_STRFUNC
+#include "apr_want.h"
 
 typedef struct ef_server_t {
     apr_pool_t *p;
index a8af1bcbfa3f15706690f0e872824a51543ab50f..ccdfdc12cc03d76e63749552940e1253420ae179 100644 (file)
 #include "http_main.h"
 #include "http_protocol.h"
 #include "util_script.h"
-
-#if APR_HAVE_STRINGS_H
-#include <strings.h>
-#endif
+#include "apr_lib.h"
+#define APR_WANT_STRFUNC
+#include "apr_want.h"
 
 typedef struct {
     const char *name;                 /* matching module name */