2014-11-20 10:33:25 -05:00
|
|
|
Libpng 1.6.15 - November 20, 2014
|
2011-11-03 00:06:45 -04:00
|
|
|
|
2014-11-20 10:33:25 -05:00
|
|
|
This is a public release of libpng, intended for use in production codes.
|
1998-04-21 16:03:57 -04:00
|
|
|
|
2006-02-22 10:19:25 -05:00
|
|
|
Files available for download:
|
|
|
|
|
|
|
|
Source files with LF line endings (for Unix/Linux) and with a
|
|
|
|
"configure" script
|
|
|
|
|
2014-11-20 10:33:25 -05:00
|
|
|
libpng-1.6.15.tar.xz (LZMA-compressed, recommended)
|
|
|
|
libpng-1.6.15.tar.gz
|
2006-03-31 06:29:33 -05:00
|
|
|
|
2006-02-22 10:19:25 -05:00
|
|
|
Source files with CRLF line endings (for Windows), without the
|
|
|
|
"configure" script
|
|
|
|
|
2014-11-20 10:33:25 -05:00
|
|
|
lpng1615.7z (LZMA-compressed, recommended)
|
|
|
|
lpng1615.zip
|
2006-02-22 10:19:25 -05:00
|
|
|
|
|
|
|
Other information:
|
|
|
|
|
2014-11-20 10:33:25 -05:00
|
|
|
libpng-1.6.15-README.txt
|
|
|
|
libpng-1.6.15-LICENSE.txt
|
|
|
|
libpng-1.6.15-*.asc (armored detached GPG signatures)
|
2014-10-22 20:59:42 -04:00
|
|
|
|
|
|
|
Changes since the last public release (1.6.14):
|
2014-11-14 18:59:40 -05:00
|
|
|
Changed "if (!x)" to "if (x == 0)" and "if (x)" to "if (x != 0)"
|
2014-10-26 22:09:03 -04:00
|
|
|
Simplified png_free_data().
|
2014-10-29 09:27:34 -04:00
|
|
|
Added missing "ptr = NULL" after some instances of png_free().
|
2014-11-20 10:33:25 -05:00
|
|
|
Made a one-line revision to configure.ac to support ARM on aarch64
|
|
|
|
(bug report by Marcin Juszkiewicz, fix by John Bowler).
|
2014-11-05 10:22:19 -05:00
|
|
|
Avoid out-of-bounds memory access in png_user_version_check().
|
2014-11-05 13:00:32 -05:00
|
|
|
Simplified and future-proofed png_user_version_check().
|
2014-11-05 18:19:36 -05:00
|
|
|
Fixed GCC unsigned int->float warnings. Various versions of GCC
|
|
|
|
seem to generate warnings when an unsigned value is implicitly
|
|
|
|
converted to double. This is probably a GCC bug but this change
|
|
|
|
avoids the issue by explicitly converting to (int) where safe.
|
|
|
|
Free all allocated memory in pngimage. The file buffer cache was left
|
|
|
|
allocated at the end of the program, harmless but it causes memory
|
|
|
|
leak reports from clang.
|
|
|
|
Fixed array size calculations to avoid warnings. At various points
|
|
|
|
in the code the number of elements in an array is calculated using
|
|
|
|
sizeof. This generates a compile time constant of type (size_t) which
|
|
|
|
is then typically assigned to an (unsigned int) or (int). Some versions
|
|
|
|
of GCC on 64-bit systems warn about the apparent narrowing, even though
|
|
|
|
the same compiler does apparently generate the correct, in-range,
|
|
|
|
numeric constant. This adds appropriate, safe, casts to make the
|
|
|
|
warnings go away.
|
2014-11-06 21:58:33 -05:00
|
|
|
Removed #ifdef PNG_16BIT_SUPPORTED/#endif around png_product2(); it is
|
|
|
|
needed by png_reciprocal2().
|
|
|
|
Added #ifdef PNG_16BIT_SUPPORTED/#endif around png_log16bit() and
|
|
|
|
png_do_swap().
|
2014-11-07 08:41:16 -05:00
|
|
|
Changed all "#endif /* PNG_FEATURE_SUPPORTED */" to "#endif /* FEATURE */"
|
2014-11-14 10:49:15 -05:00
|
|
|
The macros passed in the command line to Borland make were ignored if
|
|
|
|
similarly-named macros were already defined in makefiles. This behavior
|
2014-11-14 10:47:54 -05:00
|
|
|
is different from POSIX make and other make programs. Surround the
|
|
|
|
macro definitions with ifndef guards (Cosmin).
|
2014-11-16 20:37:42 -05:00
|
|
|
Added "-D_CRT_SECURE_NO_WARNINGS" to CFLAGS in scripts/makefile.vcwin32.
|
|
|
|
Removed the obsolete $ARCH variable from scripts/makefile.darwin.
|
|
|
|
|
2014-07-30 09:09:22 -04:00
|
|
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
|
|
|
(subscription required; visit
|
|
|
|
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
|
|
|
to subscribe)
|
|
|
|
or to glennrp at users.sourceforge.net
|
|
|
|
|
|
|
|
Glenn R-P
|