[libpng12] Added "-D_SOLO" to contrib/pngminim makefiles (for zlib-1.2.6+)
This commit is contained in:
parent
9edeb31cee
commit
ee808bf878
46
ANNOUNCE
46
ANNOUNCE
@ -1,5 +1,5 @@
|
||||
|
||||
Libpng 1.2.51rc03 - February 3, 2014
|
||||
Libpng 1.2.51rc04 - February 3, 2014
|
||||
|
||||
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.
|
||||
@ -9,36 +9,36 @@ Files available for download:
|
||||
Source files with LF line endings (for Unix/Linux) and with a
|
||||
"configure" script
|
||||
|
||||
libpng-1.2.51rc03.tar.xz (LZMA-compressed, recommended)
|
||||
libpng-1.2.51rc03.tar.gz
|
||||
libpng-1.2.51rc03.tar.bz2
|
||||
libpng-1.2.51rc04.tar.xz (LZMA-compressed, recommended)
|
||||
libpng-1.2.51rc04.tar.gz
|
||||
libpng-1.2.51rc04.tar.bz2
|
||||
|
||||
Source files with LF line endings (for Unix/Linux) without the
|
||||
"configure" script
|
||||
|
||||
libpng-1.2.51rc03-no-config.tar.xz (LZMA-compressed, recommended)
|
||||
libpng-1.2.51rc03-no-config.tar.gz
|
||||
libpng-1.2.51rc03-no-config.tar.bz2
|
||||
libpng-1.2.51rc04-no-config.tar.xz (LZMA-compressed, recommended)
|
||||
libpng-1.2.51rc04-no-config.tar.gz
|
||||
libpng-1.2.51rc04-no-config.tar.bz2
|
||||
|
||||
Source files with CRLF line endings (for Windows), without the
|
||||
"configure" script
|
||||
|
||||
lp1251r03.zip
|
||||
lp1251r03.7z
|
||||
lp1251r03.tar.bz2
|
||||
lp1251r04.zip
|
||||
lp1251r04.7z
|
||||
lp1251r04.tar.bz2
|
||||
|
||||
Project files
|
||||
|
||||
libpng-1.2.51rc03-project-netware.zip
|
||||
libpng-1.2.51rc03-project-wince.zip
|
||||
libpng-1.2.51rc04-project-netware.zip
|
||||
libpng-1.2.51rc04-project-wince.zip
|
||||
|
||||
Other information:
|
||||
|
||||
libpng-1.2.51rc03-README.txt
|
||||
libpng-1.2.51rc03-KNOWNBUGS.txt
|
||||
libpng-1.2.51rc03-LICENSE.txt
|
||||
libpng-1.2.51rc03-Y2K-compliance.txt
|
||||
libpng-1.2.51rc03-[previous version]-diff.txt
|
||||
libpng-1.2.51rc04-README.txt
|
||||
libpng-1.2.51rc04-KNOWNBUGS.txt
|
||||
libpng-1.2.51rc04-LICENSE.txt
|
||||
libpng-1.2.51rc04-Y2K-compliance.txt
|
||||
libpng-1.2.51rc04-[previous version]-diff.txt
|
||||
|
||||
Changes since the last public release (1.2.50):
|
||||
|
||||
@ -73,6 +73,9 @@ version 1.2.51rc03 [February 3, 2014]
|
||||
Quiet unused variable warnings from clang by porting PNG_UNUSED() from
|
||||
libpng-1.4.6.
|
||||
|
||||
version 1.2.51rc04 [February 3, 2014]
|
||||
Added -DZ_SOLO to CFLAGS in contrib/pngminim/*/makefile
|
||||
|
||||
version 1.0.61 and 1.2.51 [February 3, 2014]
|
||||
No changes.
|
||||
|
||||
@ -84,12 +87,3 @@ or to glennrp at users.sourceforge.net
|
||||
|
||||
Glenn R-P
|
||||
#endif
|
||||
|
||||
version 1.0.61 and 1.2.51 [February 3, 2014]
|
||||
No changes.
|
||||
|
||||
(subscription required; visit
|
||||
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
||||
to subscribe) or to glennrp at users.sourceforge.net
|
||||
|
||||
Glenn R-P
|
||||
|
3
CHANGES
3
CHANGES
@ -2808,6 +2808,9 @@ version 1.2.51rc03 [February 3, 2014]
|
||||
Quiet unused variable warnings from clang by porting PNG_UNUSED() from
|
||||
libpng-1.4.6.
|
||||
|
||||
version 1.2.51rc04 [February 3, 2014]
|
||||
Added -DZ_SOLO to CFLAGS in contrib/pngminim/*/makefile
|
||||
|
||||
version 1.0.61 and 1.2.51 [February 3, 2014]
|
||||
No changes.
|
||||
|
||||
|
@ -7,7 +7,7 @@ LD=$(CC)
|
||||
|
||||
RM=rm -f
|
||||
|
||||
CFLAGS=-DPNG_USER_CONFIG -DNO_GZCOMPRESS -DNO_GZIP \
|
||||
CFLAGS=-DPNG_USER_CONFIG -DNO_GZCOMPRESS -DNO_GZIP -DZ_SOLO \
|
||||
-DdeflateParams\(a,b,c\)=Z_OK -I. -O1
|
||||
|
||||
C=.c
|
||||
|
@ -7,7 +7,7 @@ LD=$(CC)
|
||||
|
||||
RM=rm -f
|
||||
|
||||
CFLAGS=-DPNG_USER_CONFIG -DNO_GZIP -I. -O1
|
||||
CFLAGS=-DPNG_USER_CONFIG -DNO_GZIP -DZ_SOLO -I. -O1
|
||||
|
||||
C=.c
|
||||
O=.o
|
||||
|
@ -23,7 +23,7 @@ XLIB = -L/usr/X11R6/lib -lX11
|
||||
#LIBS = $(XLIB)
|
||||
LIBS = $(XLIB) -lm #platforms that need libm
|
||||
|
||||
CFLAGS=-DPNG_USER_CONFIG -DNO_GZCOMPRESS -DNO_GZIP \
|
||||
CFLAGS=-DPNG_USER_CONFIG -DNO_GZCOMPRESS -DNO_GZIP -DZ_SOLO \
|
||||
-DdeflateParams\(a,b,c\)=Z_OK -I. $(XINC) -O1
|
||||
|
||||
C=.c
|
||||
|
Reference in New Issue
Block a user