mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-28 14:09:51 -04:00
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
$NetBSD: patch-ax,v 1.2 2013/07/05 13:43:44 ryoon Exp $
|
|
|
|
* Fix build with png-1.5.
|
|
* Fix build with giflib 5.0.
|
|
|
|
--- src/xfns.c.orig 2002-12-06 17:05:35.000000000 +0000
|
|
+++ src/xfns.c
|
|
@@ -8541,7 +8541,11 @@ my_png_error (png_ptr, msg)
|
|
{
|
|
xassert (png_ptr != NULL);
|
|
image_error ("PNG error: %s", build_string (msg), Qnil);
|
|
+#if (PNG_LIBPNG_VER < 10500)
|
|
longjmp (png_ptr->jmpbuf, 1);
|
|
+#else
|
|
+ png_longjmp (png_ptr, 1);
|
|
+#endif
|
|
}
|
|
|
|
|
|
@@ -8699,7 +8703,7 @@ png_load (f, img)
|
|
|
|
/* Set error jump-back. We come back here when the PNG library
|
|
detects an error. */
|
|
- if (setjmp (png_ptr->jmpbuf))
|
|
+ if (setjmp (png_jmpbuf(png_ptr)))
|
|
{
|
|
error:
|
|
if (png_ptr)
|
|
@@ -9759,7 +9763,7 @@ gif_load (f, img)
|
|
}
|
|
|
|
/* Open the GIF file. */
|
|
- gif = DGifOpenFileName (XSTRING (file)->data);
|
|
+ gif = DGifOpenFileName (XSTRING (file)->data, NULL);
|
|
if (gif == NULL)
|
|
{
|
|
image_error ("Cannot open `%s'", file, Qnil);
|
|
@@ -9775,7 +9779,7 @@ gif_load (f, img)
|
|
memsrc.len = STRING_BYTES (XSTRING (specified_data));
|
|
memsrc.index = 0;
|
|
|
|
- gif = DGifOpen(&memsrc, gif_read_from_memory);
|
|
+ gif = DGifOpen(&memsrc, gif_read_from_memory, NULL);
|
|
if (!gif)
|
|
{
|
|
image_error ("Cannot open memory source `%s'", img->spec, Qnil);
|