summaryrefslogtreecommitdiff
path: root/pcr/emacs-lucid/emacs-24.3-giflib5.patch
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-09-20 23:25:38 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-09-20 23:25:38 -0400
commita3b4fa51913575d1c7478abfbcdd2799d0855ab0 (patch)
treec07c473a2f04bc4f372912c36cee2d5cfabbb74c /pcr/emacs-lucid/emacs-24.3-giflib5.patch
parentda805a9cb56999efeff0bc5367a3b8944262cce2 (diff)
update emacs-lucid, move it from [~lukeshu] to [pcr]
Diffstat (limited to 'pcr/emacs-lucid/emacs-24.3-giflib5.patch')
-rw-r--r--pcr/emacs-lucid/emacs-24.3-giflib5.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/pcr/emacs-lucid/emacs-24.3-giflib5.patch b/pcr/emacs-lucid/emacs-24.3-giflib5.patch
new file mode 100644
index 000000000..b8571abb2
--- /dev/null
+++ b/pcr/emacs-lucid/emacs-24.3-giflib5.patch
@@ -0,0 +1,26 @@
+--- src/image.c
++++ src/image.c 2013-05-21 15:49:41.945819346 +0000
+@@ -7192,7 +7192,11 @@ gif_load (struct frame *f, struct image
+ }
+
+ /* Open the GIF file. */
++#if GIFLIB_MAJOR < 5
+ gif = fn_DGifOpenFileName (SSDATA (file));
++#else
++ gif = fn_DGifOpenFileName (SSDATA (file), NULL);
++#endif
+ if (gif == NULL)
+ {
+ image_error ("Cannot open `%s'", file, Qnil);
+@@ -7213,7 +7217,11 @@ gif_load (struct frame *f, struct image
+ memsrc.len = SBYTES (specified_data);
+ memsrc.index = 0;
+
++#if GIFLIB_MAJOR < 5
+ gif = fn_DGifOpen (&memsrc, gif_read_from_memory);
++#else
++ gif = fn_DGifOpen (&memsrc, gif_read_from_memory, NULL);
++#endif
+ if (!gif)
+ {
+ image_error ("Cannot open memory source `%s'", img->spec, Qnil);