From: William A. Rowe Jr Date: Tue, 22 Mar 2016 21:06:08 +0000 (+0000) Subject: Fix missing limits.h header, required for 2.4.next release, X-Git-Tag: 2.4.20~40 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dfcf1bb5ca3b2ccfe10d0cc963d5dab78966df20;p=apache 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 --- 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