From: Jeff Trawick Date: Mon, 15 Jan 2001 20:23:12 +0000 (+0000) Subject: fix a warning on platforms where is needed for str[n]casecmp() X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~194 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=78dc9b739fe4bf6519dce0d2815c4c6db528d235;p=apache fix a warning on platforms where is needed for str[n]casecmp() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87693 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/generators/mod_info.c b/modules/generators/mod_info.c index e69d6cd512..e4997b9bea 100644 --- a/modules/generators/mod_info.c +++ b/modules/generators/mod_info.c @@ -92,6 +92,9 @@ #include "http_protocol.h" #include "util_script.h" #include "http_conf_globals.h" +#if APR_HAVE_STRINGS_H +#include +#endif typedef struct { const char *name; /* matching module name */