diff options
author | he <he> | 2000-03-21 11:10:39 +0000 |
---|---|---|
committer | he <he> | 2000-03-21 11:10:39 +0000 |
commit | 89a04795dacf4e97c0b45a7ab4723c8b4a107b4c (patch) | |
tree | 3c24d7968f3dd90ff313531036d58a4b9a6fcb78 /graphics | |
parent | d1f301628fa1bf19324ced5eacbddef321b9e823 (diff) | |
download | pkgsrc-89a04795dacf4e97c0b45a7ab4723c8b4a107b4c.tar.gz |
Add prototype for gdImageCreateFromXpm in gd.h.
Patch originally (a small) part of GD-1.26.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gd/files/patch-sum | 3 | ||||
-rw-r--r-- | graphics/gd/patches/patch-ab | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/graphics/gd/files/patch-sum b/graphics/gd/files/patch-sum index c1239c853d8..f6d8cc7a4c1 100644 --- a/graphics/gd/files/patch-sum +++ b/graphics/gd/files/patch-sum @@ -1,3 +1,4 @@ -$NetBSD: patch-sum,v 1.5 2000/03/17 23:16:19 tron Exp $ +$NetBSD: patch-sum,v 1.6 2000/03/21 11:10:39 he Exp $ MD5 (patch-aa) = ffc3d01724e7ff7daeae1197c9d1c4db +MD5 (patch-ab) = 75dd2c81df4d1969ebc38468e0535e96 diff --git a/graphics/gd/patches/patch-ab b/graphics/gd/patches/patch-ab new file mode 100644 index 00000000000..028e062c1fd --- /dev/null +++ b/graphics/gd/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.3 2000/03/21 11:10:39 he Exp $ + +--- gd.h.dist Mon Mar 13 19:25:57 2000 ++++ gd.h Tue Mar 21 11:32:30 2000 +@@ -114,6 +114,7 @@ + gdImagePtr gdImageCreateFromGd2PartCtx(gdIOCtxPtr in, int srcx, int srcy, int w, int h); + + gdImagePtr gdImageCreateFromXbm(FILE *fd); ++gdImagePtr gdImageCreateFromXpm(char *filename); + + void gdImageDestroy(gdImagePtr im); + void gdImageSetPixel(gdImagePtr im, int x, int y, int color); |