/hg/icedtea6: Patch which fixes class UID for various JAXP classes.

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Mar 2 09:38:59 PST 2011


changeset 29c90e090d7b in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=29c90e090d7b
author: ptisnovs
date: Wed Mar 02 18:41:37 2011 +0100

	Patch which fixes class UID for various JAXP classes.


diffstat:

4 files changed, 45 insertions(+), 1 deletion(-)
ChangeLog                             |    6 ++++++
Makefile.am                           |    1 -
patches/jaxp-serial-version-uid.patch |   25 +++++++++++++++++++++++++
private                               |   14 ++++++++++++++

diffs (83 lines):

diff -r 2d4768330e78 -r 29c90e090d7b ChangeLog
--- a/ChangeLog	Wed Mar 02 08:52:04 2011 -0500
+++ b/ChangeLog	Wed Mar 02 18:41:37 2011 +0100
@@ -1,3 +1,12 @@ 2011-03-01  Denis Lila  <dlila at redhat.co
+2011-03-02  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* Makefile.am:
+	Added patch jaxp-serial-version-uid.patch
+	* patches/jaxp-serial-version-uid.patch:
+	Patch which fixes class UID for various JAXP classes
+	to allow IcedTea6 to pass TCK and to match these
+	UIDs with IcedTea6-1.9 and proprietary JDK6.
+
 2011-03-01  Denis Lila  <dlila at redhat.com>
 
 	* Makefile.am:
diff -r 2d4768330e78 -r 29c90e090d7b Makefile.am
--- a/Makefile.am	Wed Mar 02 08:52:04 2011 -0500
+++ b/Makefile.am	Wed Mar 02 18:41:37 2011 +0100
@@ -326,7 +326,8 @@ ICEDTEA_PATCHES = \
 	patches/openjdk/6967434-bad-round-joins.patch \
 	patches/openjdk/6766342-AA-simple-shape-performance.patch \
 	patches/openjdk/7016856-pisces-performance.patch \
-	patches/openjdk/6934977-MappedByteBuffer.load.patch
+	patches/openjdk/6934977-MappedByteBuffer.load.patch \
+	patches/jaxp-serial-version-uid.patch
 
 if !WITH_ALT_HSBUILD
 ICEDTEA_PATCHES += \
diff -r 2d4768330e78 -r 29c90e090d7b patches/jaxp-serial-version-uid.patch
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/jaxp-serial-version-uid.patch	Wed Mar 02 18:41:37 2011 +0100
@@ -0,0 +1,50 @@
+--- openjdk.orig/jaxp/build.properties	2011-03-01 12:32:15.000000000 +0100
++++ openjdk/jaxp/build.properties	2011-03-01 12:32:15.000000000 +0100
+@@ -78,7 +78,7 @@
+ patches.dir=patches
+ 
+ # Patches to apply
+-jaxp_src.patch.list=6927050.patch
++jaxp_src.patch.list=6927050.patch SerialVersionUid.patch
+ 
+ # Sanity information
+ sanity.info= Sanity Settings:${line.separator}\
+--- openjdk.orig/jaxp/patches/jaxp_src/SerialVersionUid.patch	2010-06-29 10:52:54.337250608 +0200
++++ openjdk/jaxp/patches/jaxp_src/SerialVersionUid.patch	2010-06-29 10:52:54.337250608 +0200
+@@ -0,0 +1,36 @@
++--- src/javax/xml/stream/FactoryConfigurationError.java	2010-06-04 01:51:47.000000000 +0200
+++++ src/javax/xml/stream/FactoryConfigurationError.java	2010-06-04 01:51:47.000000000 +0200
++@@ -37,6 +37,9 @@
++  */
++ public class FactoryConfigurationError extends Error {
++ 
+++  // explicitly defined serial version ID to make TCK happy
+++  private static final long serialVersionUID = -2994412584589975744L;
+++
++   Exception nested;
++ 
++   /**
++--- src/javax/xml/transform/TransformerFactoryConfigurationError.java	2011-03-01 14:18:52.000000000 +0100
+++++ src/javax/xml/transform/TransformerFactoryConfigurationError.java	2011-03-02 14:06:02.000000000 +0100
++@@ -33,6 +33,9 @@
++  */
++ public class TransformerFactoryConfigurationError extends Error {
++ 
+++    // explicitly defined serial version ID to make TCK happy
+++    private static final long serialVersionUID = -6527718720676281516L;
+++
++     /**
++      * <code>Exception</code> for the
++      *  <code>TransformerFactoryConfigurationError</code>.
++--- src/javax/xml/parsers/FactoryConfigurationError.java	2011-03-01 14:18:52.000000000 +0100
+++++ src/javax/xml/parsers/FactoryConfigurationError.java	2011-03-02 15:12:22.000000000 +0100
++@@ -37,6 +37,9 @@
++ 
++ public class FactoryConfigurationError extends Error {
++ 
+++    // explicitly defined serial version ID to make TCK happy
+++    private static final long serialVersionUID = -827108682472263355L;
+++
++     /**
++      *<code>Exception</code> that represents the error.
++      */



More information about the distro-pkg-dev mailing list