/hg/icedtea6: G356743: Build against libpng 1.5.

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Mon Mar 28 15:59:32 PDT 2011


changeset dadfc80b947a in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=dadfc80b947a
author: Andrew John Hughes <ahughes at redhat.com>
date: Mon Mar 28 23:59:26 2011 +0100

	G356743: Build against libpng 1.5.

	2011-03-28 Andrew John Hughes <ahughes at redhat.com> Patch
	contributed by: Alexis Ballier <aballier at gentoo.org>

	 * Makefile.am: Add patch.
		* THANKYOU: List Alexis.
		* NEWS: Updated.
		* patches/g356743-libpng-1.5.patch: Patch to build against
	libpng 1.5.


diffstat:

 ChangeLog                        |   9 +++++++++
 Makefile.am                      |   3 ++-
 NEWS                             |   1 +
 THANKYOU                         |   1 +
 patches/g356743-libpng-1.5.patch |  25 +++++++++++++++++++++++++
 5 files changed, 38 insertions(+), 1 deletions(-)

diffs (82 lines):

diff -r 6fb1dbbbd0d3 -r dadfc80b947a ChangeLog
--- a/ChangeLog	Sat Mar 26 08:30:50 2011 +0100
+++ b/ChangeLog	Mon Mar 28 23:59:26 2011 +0100
@@ -1,3 +1,12 @@
+2011-03-28  Andrew John Hughes  <ahughes at redhat.com>
+	Patch contributed by: Alexis Ballier <aballier at gentoo.org>
+
+	* Makefile.am: Add patch.
+	* THANKYOU: List Alexis.
+	* NEWS: Updated.
+	* patches/g356743-libpng-1.5.patch:
+	Patch to build against libpng 1.5.
+
 2011-03-26  Xerxes Ranby  <xerxes at zafena.se>
 
 	JamVM: Handle overflow in getPhysicalMemory().
diff -r 6fb1dbbbd0d3 -r dadfc80b947a Makefile.am
--- a/Makefile.am	Sat Mar 26 08:30:50 2011 +0100
+++ b/Makefile.am	Mon Mar 28 23:59:26 2011 +0100
@@ -331,7 +331,8 @@
 	patches/openjdk/7027667-AAShapePipeRegTest.patch \
 	patches/openjdk/7019861-AA-regression-fix.patch \
 	patches/openjdk/6768387-jtable_not_serializable.patch \
-	patches/mark_sun_toolkit_privileged_code.patch
+	patches/mark_sun_toolkit_privileged_code.patch \
+	patches/g356743-libpng-1.5.patch
 
 if WITH_ALT_HSBUILD
 ICEDTEA_PATCHES += \
diff -r 6fb1dbbbd0d3 -r dadfc80b947a NEWS
--- a/NEWS	Sat Mar 26 08:30:50 2011 +0100
+++ b/NEWS	Mon Mar 28 23:59:26 2011 +0100
@@ -20,6 +20,7 @@
     make check jtreg_checks="langtools hotspot".
     If none is provided make check runs all testsuites.
   - Fixed AccessControlContext which was thrown while working with Color class in a PropertyEditor
+  - G356743: Support libpng 1.5.
 * CACAO
   - Ignore all unknown options, but report them.
   - Fixes build for newer gcc (at least 4.4) on PPC64, breaks older gcc.
diff -r 6fb1dbbbd0d3 -r dadfc80b947a THANKYOU
--- a/THANKYOU	Sat Mar 26 08:30:50 2011 +0100
+++ b/THANKYOU	Mon Mar 28 23:59:26 2011 +0100
@@ -4,6 +4,7 @@
 patches. If your name does not appear on either list, but should, let
 us know. Please keep this list in alphabetic order.
 
+Alexis Ballier (aballier at gentoo.org)
 Alon Bar-Lev (alon.barlev at gmail.com)
 C. K. Jester-Young  (cky944 at gmail.com)
 Torsten Werner (mail.twerner at googlemail.com)
\ No newline at end of file
diff -r 6fb1dbbbd0d3 -r dadfc80b947a patches/g356743-libpng-1.5.patch
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/g356743-libpng-1.5.patch	Mon Mar 28 23:59:26 2011 +0100
@@ -0,0 +1,26 @@
+--- openjdk.orig/jdk/src/share/native/sun/awt/splashscreen/splashscreen_png.c
++++ openjdk/jdk/src/share/native/sun/awt/splashscreen/splashscreen_png.c
+@@ -36,7 +36,7 @@ my_png_read_stream(png_structp png_ptr,
+ {
+     png_uint_32 check;
+ 
+-    SplashStream * stream = (SplashStream*)png_ptr->io_ptr;
++    SplashStream * stream = (SplashStream*)png_get_io_ptr(png_ptr);
+     check = stream->read(stream, data, length);
+     if (check != length)
+         png_error(png_ptr, "Read Error");
+@@ -71,12 +71,11 @@ SplashDecodePng(Splash * splash, png_rw_
+         goto done;
+     }
+ 
+-    if (setjmp(png_ptr->jmpbuf)) {
++    if (setjmp(png_jmpbuf(png_ptr))) {
+         goto done;
+     }
+ 
+-    png_ptr->io_ptr = io_ptr;
+-    png_ptr->read_data_fn = read_func;
++    png_set_read_fn(png_ptr, io_ptr, read_func);
+ 
+     png_set_sig_bytes(png_ptr, SIG_BYTES);      /* we already read the 8 signature bytes */
+ 



More information about the distro-pkg-dev mailing list