Files
gentoo/media-libs/plotutils/files/plotutils-2.6-libpng-1.5.patch
Andreas Sturmlechner 68a6ab2ca8 media-libs/plotutils: EAPI-7 bump, fix pkg_postinst message
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
2020-11-06 03:24:24 +01:00

32 lines
579 B
Diff

fix building with libpng-1.5
--- a/libplot/z_write.c
+++ b/libplot/z_write.c
@@ -164,7 +164,7 @@
}
/* cleanup after libpng errors (error handler does a longjmp) */
- if (setjmp (png_ptr->jmpbuf))
+ if (png_jmpbuf (png_ptr))
{
png_destroy_write_struct (&png_ptr, (png_info **)NULL);
return -1;
@@ -444,7 +444,7 @@
#endif
}
- longjmp (png_ptr->jmpbuf, 1);
+ longjmp (png_jmpbuf (png_ptr), 1);
}
static void
@@ -515,7 +515,7 @@
#endif
}
- longjmp (png_ptr->jmpbuf, 1);
+ longjmp (png_jmpbuf (png_ptr), 1);
}
static void