diff options
author | adam <adam@pkgsrc.org> | 2007-07-01 07:54:25 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2007-07-01 07:54:25 +0000 |
commit | a2c8a12cf79092022b5bc06fa778f2fc6184b9d1 (patch) | |
tree | 845d672d0f71b7c06db5da809fa6e25217203646 /graphics/gd | |
parent | ed43eea276bac62965f731be7dcae425cf7e2632 (diff) | |
download | pkgsrc-a2c8a12cf79092022b5bc06fa778f2fc6184b9d1.tar.gz |
Changes 2.0.35:
* Fix valgrind error in gdImageFillTiled
* Add missing custom cmake macros
* Avoid signature buffer copy in gd_gif_c
* Race condition in gdImageStringFTEx
* Reading GIF images is not thread safe (static usage in private functions)
* GIF Local palette is read twice
* GIF, Use local frame dimension when possible instead of the logical screen size
* OpenVMS build support, see VMS/README.VMS for the details
* GIF, do not try to use the global colmap if it does not exist
* gdImageAALine draws axis lines with two pixels width
* TTF usage doesn't work properly on Netware
* gdImageArc CPU usage with large angles
* gdImageFilledRectangle regression fixed when used with reversed edges
* Possible infinite loop in libgd/gd_png.c, flaw found by Xavier Roche
* Fixed segfault when an invalid color index is present in a GIF image data
* Possible integer overflow in gdImageCreateTrueColor
* gdImageCreateXbm can crash if gdImageCreate fails
Diffstat (limited to 'graphics/gd')
-rw-r--r-- | graphics/gd/Makefile | 4 | ||||
-rw-r--r-- | graphics/gd/distinfo | 10 | ||||
-rw-r--r-- | graphics/gd/patches/patch-aa | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/graphics/gd/Makefile b/graphics/gd/Makefile index 41ee7947c19..fe80de6db55 100644 --- a/graphics/gd/Makefile +++ b/graphics/gd/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.73 2007/05/16 13:12:39 gdt Exp $ +# $NetBSD: Makefile,v 1.74 2007/07/01 07:54:25 adam Exp $ -DISTNAME= gd-2.0.34 +DISTNAME= gd-2.0.35 CATEGORIES= graphics MASTER_SITES= http://www.libgd.org/releases/ EXTRACT_SUFX= .tar.bz2 diff --git a/graphics/gd/distinfo b/graphics/gd/distinfo index 6adaf3fb239..d073da28c8f 100644 --- a/graphics/gd/distinfo +++ b/graphics/gd/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.26 2007/02/22 17:21:18 drochner Exp $ +$NetBSD: distinfo,v 1.27 2007/07/01 07:54:25 adam Exp $ -SHA1 (gd-2.0.34.tar.bz2) = 7d735b2917f987dd71ddbb72e9e100b2f8951de7 -RMD160 (gd-2.0.34.tar.bz2) = 88b1d298e3392c5c05acf2cd01b387d7e0d2bfae -Size (gd-2.0.34.tar.bz2) = 1135372 bytes -SHA1 (patch-aa) = 38f0aa7043dba517405312d4eef59347e3c0185a +SHA1 (gd-2.0.35.tar.bz2) = ccf34a610abff2dbf133a20c4d2a4aa94939018a +RMD160 (gd-2.0.35.tar.bz2) = f452a2c333b2ba9b7b4c143983ec2af18a335516 +Size (gd-2.0.35.tar.bz2) = 1212730 bytes +SHA1 (patch-aa) = 726107579811ce1f33b00bd4dbf13040c48120bb SHA1 (patch-ab) = 082f5baa2c147fb62381c21ecb3ce11a1891a2aa diff --git a/graphics/gd/patches/patch-aa b/graphics/gd/patches/patch-aa index afb14d86c21..10aa61f890e 100644 --- a/graphics/gd/patches/patch-aa +++ b/graphics/gd/patches/patch-aa @@ -1,9 +1,9 @@ -$NetBSD: patch-aa,v 1.17 2005/06/06 18:38:08 minskim Exp $ +$NetBSD: patch-aa,v 1.18 2007/07/01 07:54:25 adam Exp $ ---- entities.h.orig 2004-10-27 09:22:46.000000000 -0500 +--- entities.h.orig 2007-03-31 19:24:42.000000000 +0200 +++ entities.h @@ -14,7 +14,12 @@ extern "C" { - struct entities_s { + static struct entities_s { char *name; int value; -} entities[] = { @@ -16,7 +16,7 @@ $NetBSD: patch-aa,v 1.17 2005/06/06 18:38:08 minskim Exp $ {"AElig", 198}, {"Aacute", 193}, {"Acirc", 194}, -@@ -268,6 +273,7 @@ struct entities_s { +@@ -268,6 +273,7 @@ static struct entities_s { {"zwj", 8205}, {"zwnj", 8204}, }; |