mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng15] Replaced an "#if" with "ifdef" in pngrtran.c
This commit is contained in:
parent
61b23d59b1
commit
0222124801
5
ANNOUNCE
5
ANNOUNCE
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Libpng 1.5.7beta06 - November 25, 2011
|
Libpng 1.5.7beta06 - November 28, 2011
|
||||||
|
|
||||||
This is not intended to be a public release. It will be replaced
|
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.
|
within a few weeks by a public version or by another test version.
|
||||||
@ -113,7 +113,8 @@ Version 1.5.7beta05 [November 25, 2011]
|
|||||||
Moved pngvalid.c into contrib/libtests
|
Moved pngvalid.c into contrib/libtests
|
||||||
Rebuilt Makefile.in, configure, etc., with autoconf-2.68
|
Rebuilt Makefile.in, configure, etc., with autoconf-2.68
|
||||||
|
|
||||||
Version 1.5.7beta06 [November 25, 2011]
|
Version 1.5.7beta06 [November 28, 2011]
|
||||||
|
Replaced an "#if" with "ifdef" in pngrtran.c
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
|||||||
3
CHANGES
3
CHANGES
@ -3758,7 +3758,8 @@ Version 1.5.7beta05 [November 25, 2011]
|
|||||||
Moved pngvalid.c into contrib/libtests
|
Moved pngvalid.c into contrib/libtests
|
||||||
Rebuilt Makefile.in, configure, etc., with autoconf-2.68
|
Rebuilt Makefile.in, configure, etc., with autoconf-2.68
|
||||||
|
|
||||||
Version 1.5.7beta06 [November 25, 2011]
|
Version 1.5.7beta06 [November 28, 2011]
|
||||||
|
Replaced an "#if" with "ifdef" in pngrtran.c
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
|||||||
@ -1956,7 +1956,7 @@ png_read_transform_info(png_structp png_ptr, png_infop info_ptr)
|
|||||||
info_ptr->bit_depth = 8;
|
info_ptr->bit_depth = 8;
|
||||||
# else
|
# else
|
||||||
|
|
||||||
# if PNG_READ_SCALE_16_TO_8_SUPPORTED
|
# ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
|
||||||
png_ptr->transformations |= PNG_SCALE_16_TO_8;
|
png_ptr->transformations |= PNG_SCALE_16_TO_8;
|
||||||
info_ptr->bit_depth = 8;
|
info_ptr->bit_depth = 8;
|
||||||
# else
|
# else
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user