From: Rainer Jung Date: Sun, 11 Jan 2009 17:48:12 +0000 (+0000) Subject: Use APR_WANT_STRFUNC and apr_want.h instead X-Git-Tag: 2.3.2~184 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=091fe50066c4d6c3316fa8228a7e391d8c3af65e;p=thirdparty%2Fapache%2Fhttpd.git Use APR_WANT_STRFUNC and apr_want.h instead of APR_HAVE_* and system header inclusion. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@733495 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/rotatelogs.c b/support/rotatelogs.c index 83ae6ceaae0..0046c8722c3 100644 --- a/support/rotatelogs.c +++ b/support/rotatelogs.c @@ -51,12 +51,8 @@ #if APR_HAVE_STDLIB_H #include #endif -#if APR_HAVE_STRING_H -#include -#endif -#if APR_HAVE_STRINGS_H -#include -#endif +#define APR_WANT_STRFUNC +#include "apr_want.h" #define BUFSIZE 65536 #define ERRMSGSZ 256