From: Jeff Trawick Date: Sun, 11 Feb 2001 00:09:40 +0000 (+0000) Subject: clean up more warnings and link problems after the header file X-Git-Tag: 2.0.10~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e95d8139c219df505f228abe14b67f1edaed052;p=apache clean up more warnings and link problems after the header file shuffle git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88075 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/aaa/mod_auth_anon.c b/modules/aaa/mod_auth_anon.c index ec8ba3caa4..b6d6e69683 100644 --- a/modules/aaa/mod_auth_anon.c +++ b/modules/aaa/mod_auth_anon.c @@ -101,9 +101,8 @@ #include "http_protocol.h" #include "http_request.h" #include "apr_strings.h" -#if APR_HAVE_STRINGS_H -#include -#endif +#define APR_WANT_STRFUNC +#include "apr_want.h" typedef struct anon_auth { char *password; diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index a22614546f..fa7c4e7077 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -114,7 +114,8 @@ #include "apr_errno.h" #include "apr_lock.h" #include "apr_strings.h" - +#define APR_WANT_STRFUNC +#include "apr_want.h" #if APR_HAS_SHARED_MEMORY #include "apr_shmem.h" diff --git a/modules/mappers/mod_vhost_alias.c b/modules/mappers/mod_vhost_alias.c index 985d6d49a6..d611fd22f8 100644 --- a/modules/mappers/mod_vhost_alias.c +++ b/modules/mappers/mod_vhost_alias.c @@ -78,6 +78,7 @@ #include "apr.h" #include "apr_strings.h" #include "apr_hooks.h" +#include "apr_lib.h" #define APR_WANT_STRFUNC #include "apr_want.h"