commit plotutils for openSUSE:Factory

Hello community, here is the log from the commit of package plotutils for openSUSE:Factory checked in at 2012-08-31 09:55:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/plotutils (Old) and /work/SRC/openSUSE:Factory/.plotutils.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "plotutils", Maintainer is "werner@suse.com" Changes: -------- --- /work/SRC/openSUSE:Factory/plotutils/plotutils.changes 2012-08-07 08:12:13.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.plotutils.new/plotutils.changes 2012-08-31 09:55:56.000000000 +0200 @@ -1,0 +2,6 @@ +Wed Aug 29 12:39:58 UTC 2012 - pgajdos@suse.com + +- build also with libpng15 + * libpng15.patch + +------------------------------------------------------------------- New: ---- plotutils-libpng15.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ plotutils.spec ++++++ --- /var/tmp/diff_new_pack.L4DrFu/_old 2012-08-31 09:55:57.000000000 +0200 +++ /var/tmp/diff_new_pack.L4DrFu/_new 2012-08-31 09:55:57.000000000 +0200 @@ -37,6 +37,8 @@ Patch1: plotutils-uninitialized.patch Patch2: plotutils-dasharray-format.patch Patch3: plotutils-autoreconf.patch +# libpng15.patch sent 2012-08-30 at rsm@math.arizona.edu +Patch4: plotutils-libpng15.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -164,6 +166,7 @@ %patch1 %patch2 %patch3 +%patch4 -p1 # Force update lex and bison code: grep -rslE '(made by GNU Bison|A Bison parser, made from|"lex.yy.c")' . | xargs -r rm -f ++++++ plotutils-libpng15.patch ++++++ Index: plotutils-2.6/libplot/z_write.c =================================================================== --- plotutils-2.6.orig/libplot/z_write.c +++ plotutils-2.6/libplot/z_write.c @@ -164,7 +164,7 @@ _pl_z_maybe_output_image (S___(Plotter * } /* 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 @@ _our_error_fn_stdio (png_struct *png_ptr #endif } - longjmp (png_ptr->jmpbuf, 1); + longjmp (png_jmpbuf(png_ptr), 1); } static void @@ -515,7 +515,7 @@ _our_error_fn_stream (png_struct *png_pt #endif } - longjmp (png_ptr->jmpbuf, 1); + longjmp (png_jmpbuf(png_ptr), 1); } static void -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de