You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-visualization/grace/files/grace-5.1.22-libpng15.patch

20 lines
335 B

--- src/rstdrv.c
+++ src/rstdrv.c
@@ -53,6 +53,7 @@
#endif
#ifdef HAVE_LIBPNG
+# include <zlib.h>
# include <png.h>
#endif
@@ -885,7 +886,7 @@
return;
}
- if (setjmp(png_ptr->jmpbuf)) {
+ if (setjmp(png_jmpbuf(png_ptr))) {
png_destroy_write_struct(&png_ptr, &info_ptr);
return;
}