/hg/icedtea6: 2 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Sun Apr 14 13:05:26 PDT 2013


changeset bcad714e7c48 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=bcad714e7c48
author: Andrew John Hughes <gnu.andrew at redhat.com>
date: Fri Apr 12 22:06:38 2013 +0100

	Add missing NEWS entry and ChangeLog for last commit.

	2013-04-12  Andrew John Hughes  <gnu.andrew at redhat.com>

		* NEWS: Add PR1362 from last commit.
		* ChangeLog: Add missing entry for last
		commit.


changeset 44dda0c0c865 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=44dda0c0c865
author: Andrew John Hughes <gnu.andrew at redhat.com>
date: Sun Apr 14 21:05:17 2013 +0100

	PR1336: Bootstrap failure on Fedora 17/18

	2013-04-12  Andrew John Hughes  <gnu.andrew at redhat.com>

		PR1336: Bootstrap failure on Fedora 17/18
		* Makefile.am:
		(ICEDTEA_BOOTSTRAP_CLASSES): Add SSLParameters
		if needed.
		* configure.ac: Check for javax.net.ssl.SSLParameters.


diffstat:

 ChangeLog    |  24 ++++++++++++++++++++++++
 Makefile.am  |   6 ++++++
 NEWS         |   1 +
 configure.ac |   3 +++
 4 files changed, 34 insertions(+), 0 deletions(-)

diffs (71 lines):

diff -r 3584aac9d62d -r 44dda0c0c865 ChangeLog
--- a/ChangeLog	Fri Apr 05 09:01:48 2013 -0400
+++ b/ChangeLog	Sun Apr 14 21:05:17 2013 +0100
@@ -1,3 +1,27 @@
+2013-04-12  Andrew John Hughes  <gnu.andrew at redhat.com>
+
+	PR1336: Bootstrap failure on Fedora 17/18
+	* Makefile.am:
+	(ICEDTEA_BOOTSTRAP_CLASSES): Add SSLParameters
+	if needed.
+	* configure.ac: Check for javax.net.ssl.SSLParameters.
+
+2013-04-12  Andrew John Hughes  <gnu.andrew at redhat.com>
+
+	* NEWS: Add PR1362 from last commit.
+	* ChangeLog: Add missing entry for last
+	commit.
+
+2013-04-05  Chris Phillips  <chphilli at redhat.com>
+
+	* arm_port/hotspot/src/cpu/zero/vm/thumb2.cpp:
+	Fix failure in the register allocation logic,
+	diagnosed by Andrew Haley to be an issue with
+	PUSH/POP macro's and assumption of order of
+	evaluation of arguments.  The fix includes
+	detection of the condition and bailing from the
+	compilation if a similar failure is detected.
+
 2013-03-26  Andrew John Hughes  <gnu.andrew at redhat.com>
 
 	* Makefile.am:
diff -r 3584aac9d62d -r 44dda0c0c865 Makefile.am
--- a/Makefile.am	Fri Apr 05 09:01:48 2013 -0400
+++ b/Makefile.am	Sun Apr 14 21:05:17 2013 +0100
@@ -127,6 +127,12 @@
 	$(SHARE)/javax/security/sasl/Sasl.java
 endif
 
+# PR 56553 - SSLParameters support missing
+if LACKS_SSLPARAMETERS
+ICEDTEA_BOOTSTRAP_CLASSES += \
+	$(SHARE)/javax/net/ssl/SSLParameters.java
+endif
+
 # Flags
 MEMORY_LIMIT = -J-Xmx1024m
 IT_CFLAGS=$(CFLAGS) $(ARCHFLAG)
diff -r 3584aac9d62d -r 44dda0c0c865 NEWS
--- a/NEWS	Fri Apr 05 09:01:48 2013 -0400
+++ b/NEWS	Sun Apr 14 21:05:17 2013 +0100
@@ -23,6 +23,7 @@
 * Bug fixes
   - PR1318: Fix automatic enabling of the Zero build on non-JIT architectures which don't use CACAO or JamVM.
   - RH902004: very bad performance with E-Porto Add-In für OpenOffice Writer installed (hs23 only)
+  - PR1362: Fedora 19 / rawhide FTBFS SIGILL
 
 New in release 1.12.4 (2013-03-04):
 
diff -r 3584aac9d62d -r 44dda0c0c865 configure.ac
--- a/configure.ac	Fri Apr 05 09:01:48 2013 -0400
+++ b/configure.ac	Sun Apr 14 21:05:17 2013 +0100
@@ -118,6 +118,9 @@
 # PR54275 - sun.security.sasl requires missing Sasl.CREDENTIALS field
 IT_CHECK_FOR_STATIC_FIELD([JAVAX_SECURITY_SASL_SASL_CREDENTIALS],[CREDENTIALS],[javax.security.sasl.Sasl])
 
+# PR 56553 - SSLParameters support missing
+IT_CHECK_FOR_CLASS([SSLPARAMETERS],[javax.net.ssl.SSLParameters])
+
 # Use xvfb-run if found to run gui tests (check-jdk).
 AC_CHECK_PROG(XVFB_RUN_CMD, xvfb-run, [xvfb-run -a -e xvfb-errors], [])
 AC_SUBST(XVFB_RUN_CMD)



More information about the distro-pkg-dev mailing list