summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2013-08-17 11:17:48 +0000
committerjoerg <joerg@pkgsrc.org>2013-08-17 11:17:48 +0000
commit988f031fbdfc44a02ecbd1c57a6c17f0f3098c79 (patch)
tree4845637e00c96443d8e478e830f7ac5749ced0d6 /print
parentd22e5929b5d29cc33f31995153530be5f97dacf0 (diff)
downloadpkgsrc-988f031fbdfc44a02ecbd1c57a6c17f0f3098c79.tar.gz
Fix build with recent giflib.
Diffstat (limited to 'print')
-rw-r--r--print/img2eps/distinfo3
-rw-r--r--print/img2eps/patches/patch-src_im__gif.c39
2 files changed, 41 insertions, 1 deletions
diff --git a/print/img2eps/distinfo b/print/img2eps/distinfo
index 5edf847e6df..7ac707d8100 100644
--- a/print/img2eps/distinfo
+++ b/print/img2eps/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.5 2010/06/19 13:36:13 wiz Exp $
+$NetBSD: distinfo,v 1.6 2013/08/17 11:17:48 joerg Exp $
SHA1 (img2eps-0.2.tar.gz) = 0b62efba9ffdf1b9420e29ea9de928e5e8d9abaf
RMD160 (img2eps-0.2.tar.gz) = 5113a3cd22bcc2ae1562a45bfdd21c2ef0151e70
Size (img2eps-0.2.tar.gz) = 404286 bytes
SHA1 (patch-aa) = 027c6981b1b3188897af0a09bf0ce0119763316d
SHA1 (patch-ab) = 460228a99267234c7a2ad297a27cc04c78e6953e
+SHA1 (patch-src_im__gif.c) = 20c10128b82af8aaa4c7fa46abc1316c0e0a61d7
diff --git a/print/img2eps/patches/patch-src_im__gif.c b/print/img2eps/patches/patch-src_im__gif.c
new file mode 100644
index 00000000000..37e9381923f
--- /dev/null
+++ b/print/img2eps/patches/patch-src_im__gif.c
@@ -0,0 +1,39 @@
+$NetBSD: patch-src_im__gif.c,v 1.1 2013/08/17 11:17:48 joerg Exp $
+
+--- src/im_gif.c.orig 2013-08-15 18:22:38.000000000 +0000
++++ src/im_gif.c
+@@ -71,6 +71,7 @@ struct image_gif {
+ IMAGE_DECLARE(gif);
+
+ static const char *_errstr(int err);
++static int giferror;
+
+
+
+@@ -80,7 +81,7 @@ gif_close(image_gif *im)
+ free(im->pal);
+
+ if (DGifCloseFile(im->gif) != GIF_OK)
+- throwf(EIO, "error closing: %s", _errstr(GifLastError()));
++ throwf(EIO, "error closing: %s", _errstr(giferror));
+
+ image_free((image *)im);
+ }
+@@ -116,7 +117,7 @@ gif_open(char *fname)
+ GifFileType *gif;
+ exception ex;
+
+- if ((gif=DGifOpenFileName(fname)) == NULL)
++ if ((gif=DGifOpenFileName(fname, &giferror)) == NULL)
+ return NULL;
+
+ if (catch(&ex) == 0) {
+@@ -196,7 +197,7 @@ gif_read_start(image_gif *im)
+
+ if (DGifSlurp(im->gif) != GIF_OK)
+ throwf(EIO, "error reading image: %s",
+- _errstr(GifLastError()));
++ _errstr(giferror));
+
+ if (im->gif->ImageCount != 1)
+ throws(EOPNOTSUPP, "multi-image GIFs not supported");