diff options
author | adam <adam@pkgsrc.org> | 2011-05-06 07:19:22 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2011-05-06 07:19:22 +0000 |
commit | 31acd1d29047621b33eb9fb50259ed1a5c4cb088 (patch) | |
tree | 19d649e38d500bcd10f5813d123b57225e4b6aef | |
parent | 5baa116d5bdaefce26a1dbca5e0e604f6ef8aa1b (diff) | |
download | pkgsrc-31acd1d29047621b33eb9fb50259ed1a5c4cb088.tar.gz |
Changes 1.5.3beta05:
* Added the "_POSIX_SOURCE" feature test macro to ensure libpng sees the
correct API. _POSIX_SOURCE is defined in pngpriv.h, pngtest.c and
pngvalid.c to ensure that POSIX conformant systems disable non-POSIX APIs.
* Removed png_snprintf and added formatted warning messages. This change adds
internal APIs to allow png_warning messages to have parameters without
requiring the host OS to implement snprintf. As a side effect the
dependency of the tIME-supporting RFC1132 code on stdio is removed and
PNG_NO_WARNINGS does actually work now.
* Added PNG_WRITE_OPTIMIZE_CMF_SUPPORTED macro to make the zlib "CMF" byte
optimization configureable.
* IDAT compression failed if preceded by a compressed text chunk (bug
introduced in libpng-1.5.3beta01-02). This was because the attempt to
reset the zlib stream in png_write_IDAT happened after the first IDAT
chunk had been deflated - much too late. In this change internal
functions were added to claim/release the z_stream and, hopefully, make
the code more robust. Also deflateEnd checking is added - previously
libpng would ignore an error at the end of the stream.
-rw-r--r-- | graphics/png/Makefile | 4 | ||||
-rw-r--r-- | graphics/png/distinfo | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/graphics/png/Makefile b/graphics/png/Makefile index 93ca5f64638..25a8357acbd 100644 --- a/graphics/png/Makefile +++ b/graphics/png/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.133 2011/05/03 09:07:35 wiz Exp $ +# $NetBSD: Makefile,v 1.134 2011/05/06 07:19:22 adam Exp $ -DISTNAME= libpng-1.5.3beta04 +DISTNAME= libpng-1.5.3beta05 PKGNAME= ${DISTNAME:S/lib//} CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libpng/} \ diff --git a/graphics/png/distinfo b/graphics/png/distinfo index 8985688d9ff..ea5b1bc4408 100644 --- a/graphics/png/distinfo +++ b/graphics/png/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.79 2011/05/03 09:07:35 wiz Exp $ +$NetBSD: distinfo,v 1.80 2011/05/06 07:19:22 adam Exp $ -SHA1 (libpng-1.5.3beta04.tar.bz2) = f6695ddc81c6c3a1a49142adf478753f117fba0b -RMD160 (libpng-1.5.3beta04.tar.bz2) = 0cb187dd84a4234593f993bd42d1a295accd3351 -Size (libpng-1.5.3beta04.tar.bz2) = 792619 bytes +SHA1 (libpng-1.5.3beta05.tar.bz2) = 0fa980967650c9623e4e84b78165600e0bbb5abc +RMD160 (libpng-1.5.3beta05.tar.bz2) = 54cfb6bb31989cb3c3c2ce8585113191b7ec40b7 +Size (libpng-1.5.3beta05.tar.bz2) = 782137 bytes SHA1 (patch-aa) = 0c4f4e594798384079a0ce2ee5d7a45e16366b12 |