# HG changeset patch # User Andrew John Hughes # Date 1297696375 0 # Node ID 24dfe84f55e3dc68d95c1688f8a678341c86ddf7 # Parent c1b2edb50af2780f3197f7bb8dfd81dbaf085d66 Fix latent JAXP bug by adding missing import. 2011-02-14 Andrew John Hughes * Makefile.am: Add patch. * NEWS: Updated. * patches/latent_jaxp_bug.patch: Add missing import. diff -r c1b2edb50af2 -r 24dfe84f55e3 ChangeLog --- a/ChangeLog Mon Feb 14 12:54:26 2011 +0000 +++ b/ChangeLog Mon Feb 14 15:12:55 2011 +0000 @@ -1,3 +1,10 @@ +2011-02-14 Andrew John Hughes + + * Makefile.am: Add patch. + * NEWS: Updated. + * patches/latent_jaxp_bug.patch: + Add missing import. + 2011-02-14 Andrew John Hughes * NEWS: Add CVE and bug ID for NetX diff -r c1b2edb50af2 -r 24dfe84f55e3 Makefile.am --- a/Makefile.am Mon Feb 14 12:54:26 2011 +0000 +++ b/Makefile.am Mon Feb 14 15:12:55 2011 +0000 @@ -372,7 +372,8 @@ patches/openjdk/6687968-pngimagereader_mem_leak.patch \ patches/openjdk/6541476-png-iTXt-chunk.patch \ patches/openjdk/6782079-png_metadata_oom.patch \ - patches/rh676659-gcc-export-dynamic.patch + patches/rh676659-gcc-export-dynamic.patch \ + patches/latent_jaxp_bug.patch if WITH_ALT_HSBUILD ICEDTEA_PATCHES += patches/hotspot/$(HSBUILD)/openjdk-6886353-ignore_deoptimizealot.patch \ diff -r c1b2edb50af2 -r 24dfe84f55e3 NEWS --- a/NEWS Mon Feb 14 12:54:26 2011 +0000 +++ b/NEWS Mon Feb 14 15:12:55 2011 +0000 @@ -21,6 +21,7 @@ - RH677332, CVE-2011-0706: Multiple signers privilege escalation * Bug fixes - RH676659: Pass -export-dynamic flag to linker using -Wl, as option in gcc 4.6+ is broken + - Fix latent JAXP bug caused by missing import New in release 1.8.6 (2011-02-09): diff -r c1b2edb50af2 -r 24dfe84f55e3 patches/latent_jaxp_bug.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/patches/latent_jaxp_bug.patch Mon Feb 14 15:12:55 2011 +0000 @@ -0,0 +1,25 @@ +--- openjdk.orig/jaxp/build.properties 2011-02-14 12:55:39.000000000 +0000 ++++ openjdk/jaxp/build.properties 2011-02-14 12:55:25.000000000 +0000 +@@ -78,7 +78,7 @@ + patches.dir=patches + + # Patches to apply +-jaxp_src.patch.list=6927050.patch ++jaxp_src.patch.list=6927050.patch,import_fix.patch + + # Sanity information + sanity.info= Sanity Settings:${line.separator}\ +diff -Nru jaxp.orig/patches/jaxp_src/import_fix.patch jaxp/patches/jaxp_src/import_fix.patch +--- openjdk.orig/jaxp/patches/jaxp_src/import_fix.patch 1970-01-01 01:00:00.000000000 +0100 ++++ openjdk/jaxp/patches/jaxp_src/import_fix.patch 2011-02-14 13:46:22.000000000 +0000 +@@ -0,0 +1,10 @@ ++--- src/com/sun/org/apache/xerces/internal/jaxp/validation/ValidatorHandlerImpl.java 2009-10-14 18:13:41.000000000 +0100 +++++ src/com/sun/org/apache/xerces/internal/jaxp/validation/ValidatorHandlerImpl.java 2011-02-14 10:56:42.000000000 +0000 ++@@ -47,6 +47,7 @@ ++ import com.sun.org.apache.xerces.internal.util.SAXLocatorWrapper; ++ import com.sun.org.apache.xerces.internal.util.SAXMessageFormatter; ++ import com.sun.org.apache.xerces.internal.util.SymbolTable; +++import com.sun.org.apache.xerces.internal.util.SecurityManager; ++ import com.sun.org.apache.xerces.internal.util.URI; ++ import com.sun.org.apache.xerces.internal.util.XMLAttributesImpl; ++ import com.sun.org.apache.xerces.internal.util.XMLSymbols;