From: Ruediger Pluem Date: Sat, 17 May 2008 19:32:01 +0000 (+0000) Subject: * Include earlier if available since INT_MAX is defined there on X-Git-Tag: 2.3.0~619 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=390b2cc17cd1e853d5be98ae367ab74b351a21d5;p=apache * Include earlier if available since INT_MAX is defined there on Windows and we need INT_MAX already for the definition of MAX_REQUESTS. PR: 45024 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@657433 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 2045f52af9..10f2cbd872 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,8 @@ Changes with Apache 2.3.0 [ When backported to 2.2.x, remove entry from this file ] + *) ab: Make ab.c compile on VC6. PR 45024 [Ruediger Pluem] + *) configure: Don't reject libtool 2.x PR 44817 [Arfrever Frehtes Taifersar Arahesis ] diff --git a/support/ab.c b/support/ab.c index b2a467c95f..d1cf2ad8e5 100644 --- a/support/ab.c +++ b/support/ab.c @@ -193,6 +193,9 @@ typedef STACK_OF(X509) X509_STACK_TYPE; #if APR_HAVE_CTYPE_H #include #endif +#if APR_HAVE_LIMITS_H +#include +#endif /* ------------------- DEFINITIONS -------------------------- */ @@ -426,7 +429,6 @@ static void ssl_state_cb(const SSL *s, int w, int r) } #ifndef RAND_MAX -#include #define RAND_MAX INT_MAX #endif