From aeb3a649b8720ceb91f9337d0cd28d6512f9f784 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Tue, 22 Mar 2016 20:06:32 +0000 Subject: [PATCH] Fix missing limits.h header, required for 2.4.next release, masked on many platforms by intrinsic limits.h inclusion by other headers. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1736243 13f79535-47bb-0310-9956-ffa450edef68 --- modules/cache/mod_socache_shmcb.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/cache/mod_socache_shmcb.c b/modules/cache/mod_socache_shmcb.c index 6d601b9eef..cb98dfa236 100644 --- a/modules/cache/mod_socache_shmcb.c +++ b/modules/cache/mod_socache_shmcb.c @@ -29,6 +29,10 @@ #include "apr_want.h" #include "apr_general.h" +#if APR_HAVE_LIMITS_H +#include +#endif + #include "ap_socache.h" /* XXX Unfortunately, there are still many unsigned ints in use here, so we -- 2.50.1