From 9d625938e2d29e037b1d3eb852f0cdb75107e02b Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 31 Jan 2006 18:52:50 +0000 Subject: [PATCH] - fix bug #6645: doesn't compile with zlib 1.2.2 (undefined Z_FIXED) --- php_http_encoding_api.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/php_http_encoding_api.h b/php_http_encoding_api.h index 9cde6e7..883d676 100644 --- a/php_http_encoding_api.h +++ b/php_http_encoding_api.h @@ -53,6 +53,11 @@ typedef enum { #define HTTP_DEFLATE_STRATEGY_RLE 0x00000300 #define HTTP_DEFLATE_STRATEGY_FIXED 0x00000400 +#ifndef Z_FIXED +/* Z_FIXED does not exist prior 1.2.2.2 */ +# define Z_FIXED 0 +#endif + #define HTTP_INFLATE_TYPE_ZLIB 0x00000000 #define HTTP_INFLATE_TYPE_GZIP 0x00000000 #define HTTP_INFLATE_TYPE_RAW 0x00000001 -- 2.30.2