From dfcf1bb5ca3b2ccfe10d0cc963d5dab78966df20 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Tue, 22 Mar 2016 21:06:08 +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. Backports: r1736243 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1736253 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 2731b81345..2750f25490 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.40.0