mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[master] Added vstudio/* and CMakeLists to EXTRA_DIST in Makefile.in
and Makefile.am
This commit is contained in:
39
ANNOUNCE
39
ANNOUNCE
@@ -1,46 +1,33 @@
|
|||||||
|
|
||||||
Libpng 1.4.8 - July 7, 2011
|
Libpng 1.4.9beta01 - July 8, 2011
|
||||||
|
|
||||||
This is a public release of libpng, intended for use in production codes.
|
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.
|
||||||
|
|
||||||
Files available for download:
|
Files available for download:
|
||||||
|
|
||||||
Source files with LF line endings (for Unix/Linux) and with a
|
Source files with LF line endings (for Unix/Linux) and with a
|
||||||
"configure" script
|
"configure" script
|
||||||
|
|
||||||
libpng-1.4.8.tar.xz (LZMA-compressed, recommended)
|
1.4.9beta01.tar.xz (LZMA-compressed, recommended)
|
||||||
libpng-1.4.8.tar.gz
|
1.4.9beta01.tar.gz
|
||||||
libpng-1.4.8.tar.bz2
|
1.4.9beta01.tar.bz2
|
||||||
|
|
||||||
Source files with CRLF line endings (for Windows), without the
|
Source files with CRLF line endings (for Windows), without the
|
||||||
"configure" script
|
"configure" script
|
||||||
|
|
||||||
lpng148.7z (LZMA-compressed, recommended)
|
lp149b01.7z (LZMA-compressed, recommended)
|
||||||
lpng148.zip
|
lp149b01.zip
|
||||||
|
|
||||||
Other information:
|
Other information:
|
||||||
|
|
||||||
libpng-1.4.8-README.txt
|
1.4.9beta01-README.txt
|
||||||
libpng-1.4.8-LICENSE.txt
|
1.4.9beta01-LICENSE.txt
|
||||||
|
|
||||||
Changes since the last public release (1.4.7):
|
Changes since the last public release (1.4.8):
|
||||||
|
|
||||||
Undef "_ALL_SOURCE" for AIX, to prevent "jmpbuf" from being redefined.
|
version 1.4.9beta01 [July 8, 2011]
|
||||||
Copied png_debug macros from pngpriv.h into pngtest.c and removed
|
Added vstudio/* and CMakeLists to EXTRA_DIST in Makefile.in and Makefile.am
|
||||||
"#include pngpriv.h" from pngtest.c, to avoid setting a bad example.
|
|
||||||
Pass "" instead of '\0' to png_default_error() in png_err(). This mistake
|
|
||||||
was introduced in libpng-1.2.20beta01.
|
|
||||||
Check for up->location !PNG_AFTER_IDAT when writing unknown chunks
|
|
||||||
before IDAT.
|
|
||||||
Ported bugfix in pngrtran.c from 1.5.3: when expanding a paletted image,
|
|
||||||
always expand to RGBA if transparency is present.
|
|
||||||
Ported bugfix in pngrtran.c from 1.5.3: Ensure coefficients are OK for
|
|
||||||
png_rgb_to_gray_fixed(); check for integer overflow in
|
|
||||||
png_set_rgb_to_gray().
|
|
||||||
Fixed uninitialized memory read in png_format_buffer() (Bug report by
|
|
||||||
Frank Busse, related to CVE-2004-0421).
|
|
||||||
Fixed error in "ACCURATE" 16-to-8 scaling (John Bowler).
|
|
||||||
Check for sCAL chunk too short.
|
|
||||||
|
|
||||||
Send comments/corrections/commendations to glennrp at users.sourceforge.net
|
Send comments/corrections/commendations to glennrp at users.sourceforge.net
|
||||||
or to png-mng-implement at lists.sf.net (subscription required; visit
|
or to png-mng-implement at lists.sf.net (subscription required; visit
|
||||||
|
|||||||
3
CHANGES
3
CHANGES
@@ -2826,6 +2826,9 @@ version 1.4.8rc01 [June 30, 2011]
|
|||||||
version 1.4.8 [July 7, 2011]
|
version 1.4.8 [July 7, 2011]
|
||||||
No changes.
|
No changes.
|
||||||
|
|
||||||
|
version 1.4.9beta01 [July 8, 2011]
|
||||||
|
Added vstudio/* and CMakeLists to EXTRA_DIST in Makefile.in and Makefile.am
|
||||||
|
|
||||||
Send comments/corrections/commendations to glennrp at users.sourceforge.net
|
Send comments/corrections/commendations to glennrp at users.sourceforge.net
|
||||||
or to png-mng-implement at lists.sf.net (subscription required; visit
|
or to png-mng-implement at lists.sf.net (subscription required; visit
|
||||||
https://lists.sourceforge.net/lists/listinfo/png-mng-implement).
|
https://lists.sourceforge.net/lists/listinfo/png-mng-implement).
|
||||||
|
|||||||
@@ -64,6 +64,7 @@ EXTRA_DIST= \
|
|||||||
pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
|
pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
|
||||||
${srcdir}/projects/visualc6/* \
|
${srcdir}/projects/visualc6/* \
|
||||||
${srcdir}/projects/visualc71/* \
|
${srcdir}/projects/visualc71/* \
|
||||||
|
${srcdir}/projects/vstudio/* \
|
||||||
${srcdir}/projects/xcode/* \
|
${srcdir}/projects/xcode/* \
|
||||||
${srcdir}/scripts/* \
|
${srcdir}/scripts/* \
|
||||||
${srcdir}/contrib/gregbook/* \
|
${srcdir}/contrib/gregbook/* \
|
||||||
|
|||||||
@@ -319,8 +319,9 @@ pkgconfig_DATA = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc
|
|||||||
|
|
||||||
#extra source distribution files.
|
#extra source distribution files.
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
ANNOUNCE CHANGES INSTALL LICENSE README TODO \
|
ANNOUNCE CHANGES INSTALL LICENSE README TODO CMakeLists.txt \
|
||||||
pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
|
pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
|
||||||
|
${srcdir}/projects/vstudio/* \
|
||||||
${srcdir}/projects/visualc6/* \
|
${srcdir}/projects/visualc6/* \
|
||||||
${srcdir}/projects/visualc71/* \
|
${srcdir}/projects/visualc71/* \
|
||||||
${srcdir}/projects/xcode/* \
|
${srcdir}/projects/xcode/* \
|
||||||
|
|||||||
Reference in New Issue
Block a user