Without objection, I'll be committing the backport in an hr or so for the morning T&R... this hardly seems to merit a vote, but any objections are welcome.
On Tue, Mar 22, 2016 at 3:06 PM, <[email protected]> wrote: > Author: wrowe > Date: Tue Mar 22 20:06:32 2016 > New Revision: 1736243 > > URL: http://svn.apache.org/viewvc?rev=1736243&view=rev > Log: > Fix missing limits.h header, required for 2.4.next release, > masked on many platforms by intrinsic limits.h inclusion by > other headers. > > > Modified: > httpd/httpd/trunk/modules/cache/mod_socache_shmcb.c > > Modified: httpd/httpd/trunk/modules/cache/mod_socache_shmcb.c > URL: > http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_socache_shmcb.c?rev=1736243&r1=1736242&r2=1736243&view=diff > > ============================================================================== > --- httpd/httpd/trunk/modules/cache/mod_socache_shmcb.c (original) > +++ httpd/httpd/trunk/modules/cache/mod_socache_shmcb.c Tue Mar 22 > 20:06:32 2016 > @@ -29,6 +29,10 @@ > #include "apr_want.h" > #include "apr_general.h" > > +#if APR_HAVE_LIMITS_H > +#include <limits.h> > +#endif > + > #include "ap_socache.h" > > /* XXX Unfortunately, there are still many unsigned ints in use here, so > we > > >
