You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2016/03/22 21:06:32 UTC

svn commit: r1736243 - /httpd/httpd/trunk/modules/cache/mod_socache_shmcb.c

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



Re: svn commit: r1736243 - /httpd/httpd/trunk/modules/cache/mod_socache_shmcb.c

Posted by Stefan Eissing <st...@greenbytes.de>.
+1

> Am 22.03.2016 um 21:55 schrieb Yann Ylavic <yl...@gmail.com>:
> 
>> On Tue, Mar 22, 2016 at 9:09 PM, William A Rowe Jr <wr...@rowe-clan.net> wrote:
>> 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.
> 
> +1

Re: svn commit: r1736243 - /httpd/httpd/trunk/modules/cache/mod_socache_shmcb.c

Posted by Yann Ylavic <yl...@gmail.com>.
On Tue, Mar 22, 2016 at 9:09 PM, William A Rowe Jr <wr...@rowe-clan.net> wrote:
> 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.

+1

Re: svn commit: r1736243 - /httpd/httpd/trunk/modules/cache/mod_socache_shmcb.c

Posted by William A Rowe Jr <wr...@rowe-clan.net>.
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, <wr...@apache.org> 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
>
>
>