summaryrefslogtreecommitdiff
path: root/graphics/imlib/files/patch-PrintGifError
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-12-25 19:07:25 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-12-25 19:07:25 +0000
commit5829c025b10b56b54215798d88f859d62aeb8815 (patch)
treeafb4562aa624cdc445efef97cedfc81572e218d9 /graphics/imlib/files/patch-PrintGifError
parentChange libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgrade (diff)
Remove imlib1
It has become a patch spaghetti over the time and making it support newer version of various graphics libraries will be a nightmare It is time to say good bye to imlib1 With hat: portmgr Discussed with: antoine Approved by: kwm
Diffstat (limited to 'graphics/imlib/files/patch-PrintGifError')
-rw-r--r--graphics/imlib/files/patch-PrintGifError21
1 files changed, 0 insertions, 21 deletions
diff --git a/graphics/imlib/files/patch-PrintGifError b/graphics/imlib/files/patch-PrintGifError
deleted file mode 100644
index 45eb482801f9..000000000000
--- a/graphics/imlib/files/patch-PrintGifError
+++ /dev/null
@@ -1,21 +0,0 @@
---- Imlib/load.c-orig 2012-06-16 20:19:27.000000000 +0200
-+++ Imlib/load.c 2012-06-16 20:19:56.000000000 +0200
-@@ -420,6 +420,18 @@
- #endif /* HAVE_LIBTIFF */
-
- #ifdef HAVE_LIBGIF
-+
-+static void
-+PrintGifError(void)
-+{
-+ char *Err = GifErrorString();
-+
-+ if (Err != NULL)
-+ fprintf(stderr, "\nGIF-LIB error: %s.\n", Err);
-+ else
-+ fprintf(stderr, "\nGIF-LIB undefined error %d.\n", GifError());
-+}
-+
- unsigned char *
- _LoadGIF(ImlibData * id, FILE *f, int *w, int *h, int *t)
- {