From 1345cbeea8cfa067a9317488fc2f33f448c463e5 Mon Sep 17 00:00:00 2001 From: Glenn Randers-Pehrson Date: Thu, 31 Mar 2011 20:33:04 -0500 Subject: [PATCH] [devel] Update change comments (1.5.2 -> 1.5.3) --- pngpriv.h | 4 ++-- pngstruct.h | 4 ++-- pngwrite.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pngpriv.h b/pngpriv.h index 5bc4f38a6..7fd8549f6 100644 --- a/pngpriv.h +++ b/pngpriv.h @@ -6,7 +6,7 @@ * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) * - * Last changed in libpng 1.5.2 [March 31, 2011] + * Last changed in libpng 1.5.3 [(PENDING RELEASE)] * * This code is released under the libpng license. * For conditions of distribution and use, see the disclaimer @@ -346,7 +346,7 @@ typedef PNG_CONST png_uint_16p FAR * png_const_uint_16pp; /* 0x400000L unused */ #define PNG_FLAG_BENIGN_ERRORS_WARN 0x800000L /* Added to libpng-1.4.0 */ #define PNG_FLAG_ZTXT_CUSTOM_STRATEGY 0x1000000L /* 5 lines added */ -#define PNG_FLAG_ZTXT_CUSTOM_LEVEL 0x2000000L /* to libpng-1.5.2 */ +#define PNG_FLAG_ZTXT_CUSTOM_LEVEL 0x2000000L /* to libpng-1.5.3 */ #define PNG_FLAG_ZTXT_CUSTOM_MEM_LEVEL 0x4000000L #define PNG_FLAG_ZTXT_CUSTOM_WINDOW_BITS 0x8000000L #define PNG_FLAG_ZTXT_CUSTOM_METHOD 0x10000000L diff --git a/pngstruct.h b/pngstruct.h index 47d65be82..e6d9f8fe8 100644 --- a/pngstruct.h +++ b/pngstruct.h @@ -69,13 +69,13 @@ struct png_struct_def int zlib_window_bits; /* holds zlib compression window bits */ int zlib_mem_level; /* holds zlib compression memory level */ int zlib_strategy; /* holds zlib compression strategy */ -/* Added at libpng 1.5.2 */ +/* Added at libpng 1.5.3 */ int zlib_text_level; /* holds zlib compression level */ int zlib_text_method; /* holds zlib compression method */ int zlib_text_window_bits; /* holds zlib compression window bits */ int zlib_text_mem_level; /* holds zlib compression memory level */ int zlib_text_strategy; /* holds zlib compression strategy */ -/* End of material added at libpng 1.5.2 */ +/* End of material added at libpng 1.5.3 */ png_uint_32 width; /* width of image in pixels */ png_uint_32 height; /* height of image in pixels */ diff --git a/pngwrite.c b/pngwrite.c index c7611ee9b..7b7b10dac 100644 --- a/pngwrite.c +++ b/pngwrite.c @@ -1491,7 +1491,7 @@ png_set_compression_method(png_structp png_ptr, int method) png_ptr->zlib_method = method; } -/* The following were added to libpng-1.5.2 */ +/* The following were added to libpng-1.5.3 */ #ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION void PNGAPI png_set_text_compression_level(png_structp png_ptr, int level) @@ -1569,7 +1569,7 @@ png_set_text_compression_method(png_structp png_ptr, int method) png_ptr->zlib_text_method = method; } #endif /* PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION */ -/* end of API added to libpng-1.5.2 */ +/* end of API added to libpng-1.5.3 */ void PNGAPI png_set_write_status_fn(png_structp png_ptr, png_write_status_ptr write_row_fn)