Commit 54d47148 authored by Yann Ylavic's avatar Yann Ylavic
Browse files

mod_deflate: Define APR_INT32_MAX when it is missing so to be able to

compile against APR-1.2.x (minimum required version).

Committed by: ylavic
Reviewed by: ylavic, trawick, gsmith


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1678699 13f79535-47bb-0310-9956-ffa450edef68
parent 2f7267a4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
                                                         -*- coding: utf-8 -*-
Changes with Apache 2.2.30


  *) mod_deflate: Define APR_INT32_MAX when it is missing so to be able to
     compile against APR-1.2.x (minimum required version). [Yann Ylavic]

Changes with Apache 2.2.29

+0 −6
Original line number Diff line number Diff line
@@ -101,12 +101,6 @@ RELEASE SHOWSTOPPERS:
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
  [ start all new proposals below, under PATCHES PROPOSED. ]

   * mod_deflate: Define APR_INT32_MAX when it is missing so to be able to
                  compile against APR-1.2.x (minimum required version).
     trunk/2.4.x patch: not concerned (require APR-1.5.x)
     2.2.x patch: http://people.apache.org/~ylavic/httpd-2.2.x-mod_deflate_APR_INT32_MAX.patch
     +1: ylavic, trawick, gsmith

   * default conf: Disable SSLv3, like SSLv2, in the default configuration.
     trunk patch: n/a -- Only 2.2.x has SSLProtocol in httpd-ssl.conf.in
     2.2.x patch: https://issues.apache.org/bugzilla/attachment.cgi?id=32131     
+4 −0
Original line number Diff line number Diff line
@@ -47,6 +47,10 @@
#define APR_WANT_STRFUNC
#include "apr_want.h"

#ifndef APR_INT32_MAX
#define APR_INT32_MAX 0x7fffffff
#endif

#include "zlib.h"

static const char deflateFilterName[] = "DEFLATE";