From 2b74a89bc8342f0b9b737c37d87737caf7b0ea1e Mon Sep 17 00:00:00 2001 From: Dirk Meyer Date: Fri, 1 Jun 2012 05:26:28 +0000 Subject: - update png to 1.5.10 --- graphics/plotutils/files/patch-libplot-z_write.c | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 graphics/plotutils/files/patch-libplot-z_write.c (limited to 'graphics/plotutils/files/patch-libplot-z_write.c') diff --git a/graphics/plotutils/files/patch-libplot-z_write.c b/graphics/plotutils/files/patch-libplot-z_write.c new file mode 100644 index 000000000000..787771bab997 --- /dev/null +++ b/graphics/plotutils/files/patch-libplot-z_write.c @@ -0,0 +1,29 @@ +--- libplot/z_write.c.orig 2008-07-16 02:54:10.000000000 +0200 ++++ libplot/z_write.c 2012-04-27 19:12:55.000000000 +0200 +@@ -164,7 +164,7 @@ + } + + /* cleanup after libpng errors (error handler does a longjmp) */ +- if (setjmp (png_ptr->jmpbuf)) ++ if (setjmp (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 -- cgit v1.2.3