Conditionally compile functions only used by sequential readers

png_combine_row() and png_read_finish_row() are not used by progressive
PNG readers.
This commit is contained in:
Glenn Randers-Pehrson
2009-05-18 10:52:12 -05:00
parent 580f4f5561
commit 5902059c7c
4 changed files with 18 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
Libpng 1.4.0beta60 - May 16, 2009
Libpng 1.4.0beta60 - May 18, 2009
This is not intended to be a public release. It will be replaced
within a few weeks by a public version or by another test version.
@@ -452,8 +452,11 @@ version 1.4.0beta59 [May 15, 2009]
Fixed typo in libpng docs (PNG_FILTER_AVE should be PNG_FILTER_AVG)
Added sections about the git repository and our coding style to the
documentation
Relocated misplaced #endif in pngwrite.c, sCAL chunk handler.
version 1.4.0beta60 [May 16, 2009]
version 1.4.0beta60 [May 18, 2009]
Conditionally compile png_combine_row() and png_read_finish_row()
which are not used by progressive readers.
version 1.4.0betaN [future]
Build shared libraries with -lz and sometimes -lm.