summaryrefslogtreecommitdiff
path: root/libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2013-11-05 00:29:37 -0200
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2013-11-05 00:29:37 -0200
commitf85c48e7e3ee02bc8ab47fcb9238eec086613639 (patch)
tree1341dc095316a8c766e58324dcdb1839936b2c51 /libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch
parentdce5a758517aa256cdc27462825389162bb36295 (diff)
parent4ccf5afc3e1b6b61c27fe71ebc3be43a36657b92 (diff)
downloadabslibre-f85c48e7e3ee02bc8ab47fcb9238eec086613639.tar.gz
abslibre-f85c48e7e3ee02bc8ab47fcb9238eec086613639.tar.bz2
abslibre-f85c48e7e3ee02bc8ab47fcb9238eec086613639.zip
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch')
-rw-r--r--libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch b/libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch
deleted file mode 100644
index c8a527cf3..000000000
--- a/libre/mplayer-libre/0001-demux_gif-declare-missing-PrintGifError.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 5194f95d39ffbb0a4a7b027d8f1b084436feb22c Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= <b@bpiotrowski.pl>
-Date: Sun, 14 Jul 2013 10:51:11 +0200
-Subject: [PATCH] demux_gif: declare missing PrintGifError
-
-Apparently it has been removed from newer Giflib releases.
----
- libmpdemux/demux_gif.c | 10 ++++++++++
- 1 file changed, 10 insertions(+)
-
-diff --git a/libmpdemux/demux_gif.c b/libmpdemux/demux_gif.c
-index eee7a85..3d761c0 100644
---- a/libmpdemux/demux_gif.c
-+++ b/libmpdemux/demux_gif.c
-@@ -44,6 +44,16 @@ typedef struct {
-
- #define GIF_SIGNATURE (('G' << 16) | ('I' << 8) | 'F')
-
-+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());
-+}
-+
- #ifndef CONFIG_GIF_TVT_HACK
- // not supported by certain versions of the library
- static int my_read_gif(GifFileType *gif, uint8_t *buf, int len)
---
-1.8.3.2
-