diff options
author | wiz <wiz@pkgsrc.org> | 2001-05-21 21:39:13 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-05-21 21:39:13 +0000 |
commit | ff1f2b2d8e193d93c9c46f97d26f1b4b3f18eac9 (patch) | |
tree | c78aa7c2fdb35becaec364655485c96f8d9b0700 /graphics/png/Makefile | |
parent | af03ce65615d70d91cec5e745f624eb637e18469 (diff) | |
download | pkgsrc-ff1f2b2d8e193d93c9c46f97d26f1b4b3f18eac9.tar.gz |
Update libpng to 1.0.11.
pkgsrc change: bump shared library major like it happened in libpng some
time ago -- our libtool'ified build didn't reflect this. Fixes pkg/12856
by Thor Simon. Note necessity of manual major/minor handling in Makefile,
to decrease chance that this will repeat in the future.
Changes since 1.0.10:
Added type casts on several png_malloc() calls (Dimitri Papadapoulos).
Removed a no-longer needed AIX work-around from pngconf.h
Changed several "//" single-line comments to C-style in pnggccrd.c
Removed PNGAPI from several functions whose prototypes did not have PNGAPI.
Updated scripts/pngos2.def
Added a check for NULL return from user's malloc_fn().
Removed some useless type casts of the NULL pointer.
Added makefile.netbsd [not used, since we're using libtool instead]
Diffstat (limited to 'graphics/png/Makefile')
-rw-r--r-- | graphics/png/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/graphics/png/Makefile b/graphics/png/Makefile index df2050ecfb3..0ff880a45b7 100644 --- a/graphics/png/Makefile +++ b/graphics/png/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.31 2001/04/02 02:23:48 mjl Exp $ -# FreeBSD Id: Makefile,v 1.10 1997/07/17 15:12:44 max Exp +# $NetBSD: Makefile,v 1.32 2001/05/21 21:39:13 wiz Exp $ -DISTNAME= libpng-1.0.10 +# On update, don't forget to increase shared library major/minor's in +# accordance with changes (patch-aa). +DISTNAME= libpng-1.0.11 PKGNAME= ${DISTNAME:S/lib//} CATEGORIES= graphics MASTER_SITES= ftp://ftp.libpng.org/pub/png/src/ \ |