# HG changeset patch # User Andrew John Hughes # Date 1297686156 0 # Node ID 28d51992e65458036ce401adb104c40ed394df5d # Parent 9d9eee71b94acbbf87a3c3340da371550fc3b7b2 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 9d9eee71b94a -r 28d51992e654 ChangeLog --- a/ChangeLog Sun Feb 13 21:32:11 2011 +0000 +++ b/ChangeLog Mon Feb 14 12:22:36 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-13 Andrew John Hughes * NEWS: Updated. diff -r 9d9eee71b94a -r 28d51992e654 Makefile.am --- a/Makefile.am Sun Feb 13 21:32:11 2011 +0000 +++ b/Makefile.am Mon Feb 14 12:22:36 2011 +0000 @@ -392,7 +392,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 9d9eee71b94a -r 28d51992e654 NEWS --- a/NEWS Sun Feb 13 21:32:11 2011 +0000 +++ b/NEWS Mon Feb 14 12:22:36 2011 +0000 @@ -21,6 +21,7 @@ - Vulnerability in permissions assigned to applets with multiple JARs * 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.7.9 (2011-02-09): diff -r 9d9eee71b94a -r 28d51992e654 patches/latent_jaxp_bug.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/patches/latent_jaxp_bug.patch Mon Feb 14 12:22:36 2011 +0000 @@ -0,0 +1,10 @@ +--- openjdk.orig/jaxp/src/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/ValidatorHandlerImpl.java 2009-10-14 18:13:41.000000000 +0100 ++++ openjdk/jaxp/src/share/classes/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;