/hg/icedtea6: Make rt.jar update dependent on bootstrapping, not...

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Fri Aug 13 12:01:00 PDT 2010


changeset 00d9b2c78bc4 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=00d9b2c78bc4
author: Andrew John Hughes <ahughes at redhat.com>
date: Fri Aug 13 20:00:48 2010 +0100

	Make rt.jar update dependent on bootstrapping, not the existence of
	sun.awt.Toolkit.

	2010-08-13 Andrew John Hughes <ahughes at redhat.com>

	 * Makefile.am: Replace conditionals on
	LACKS_SUN_AWT_TOOLKIT with ones on BOOTSTRAPPING. If we are
	bootstrapping, we don't trust the system JDK and update
	rt.jar with newly built classes, regardless of whether it's
	an Oracle-based JDK or not.
		* configure.ac: Remove check for sun.awt.Toolkit.


diffstat:

3 files changed, 14 insertions(+), 4 deletions(-)
ChangeLog    |   11 +++++++++++
Makefile.am  |    6 +++---
configure.ac |    1 -

diffs (59 lines):

diff -r c73c4672031a -r 00d9b2c78bc4 ChangeLog
--- a/ChangeLog	Tue Aug 10 14:52:56 2010 -0400
+++ b/ChangeLog	Fri Aug 13 20:00:48 2010 +0100
@@ -1,3 +1,14 @@ 2010-08-09  Omair Majid  <omajid at redhat.
+2010-08-13  Andrew John Hughes  <ahughes at redhat.com>
+
+	* Makefile.am:
+	Replace conditionals on LACKS_SUN_AWT_TOOLKIT
+	with ones on BOOTSTRAPPING.  If we are bootstrapping,
+	we don't trust the system JDK and update rt.jar
+	with newly built classes, regardless of whether it's
+	an Oracle-based JDK or not.
+	* configure.ac:
+	Remove check for sun.awt.Toolkit.
+
 2010-08-09  Omair Majid  <omajid at redhat.com>
 
 	* NEWS: Update with OpenType support.
diff -r c73c4672031a -r 00d9b2c78bc4 Makefile.am
--- a/Makefile.am	Tue Aug 10 14:52:56 2010 -0400
+++ b/Makefile.am	Fri Aug 13 20:00:48 2010 +0100
@@ -2068,7 +2068,7 @@ rt-source-files.txt: $(OPENJDK_ECJ_TREE)
 	done
 
 stamps/rt-class-files.stamp: $(INITIAL_BOOTSTRAP_LINK_STAMP) rt-source-files.txt
-if LACKS_SUN_AWT_TOOLKIT
+if BOOTSTRAPPING
 	mkdir -p lib/rt
 	$(BOOT_DIR)/bin/javac $(IT_JAVACFLAGS) -d lib/rt \
           -sourcepath $(SOURCEPATH_DIRS) -bootclasspath \'\' \
@@ -2083,7 +2083,7 @@ clean-rt:
 	rm -f stamps/rt-class-files.stamp
 	rm -f stamps/rt.stamp
 	rm -f rt-source-files.txt
-if LACKS_SUN_AWT_TOOLKIT
+if BOOTSTRAPPING
 	if [ -e $(ECJ_BOOT_DIR) ] ; then \
 	  cp $(SYSTEM_JDK_DIR)/jre/lib/rt.jar $(ECJ_BOOT_DIR)/jre/lib/rt.jar ; \
 	fi
@@ -2091,7 +2091,7 @@ endif
 
 stamps/rt.stamp: stamps/rt-class-files.stamp
 	mkdir -p stamps
-if LACKS_SUN_AWT_TOOLKIT
+if BOOTSTRAPPING
 	$(BOOT_DIR)/bin/jar uf $(RUNTIME) -C lib/rt com -C lib/rt java \
 	  -C lib/rt javax -C lib/rt sun 
 if ENABLE_NIO2
diff -r c73c4672031a -r 00d9b2c78bc4 configure.ac
--- a/configure.ac	Tue Aug 10 14:52:56 2010 -0400
+++ b/configure.ac	Fri Aug 13 20:00:48 2010 +0100
@@ -178,7 +178,6 @@ ENABLE_HG
 ENABLE_HG
 AC_CHECK_WITH_HG_REVISION
 AC_CHECK_WITH_TZDATA_DIR
-IT_CHECK_FOR_CLASS([SUN_AWT_TOOLKIT], [sun.awt.SunToolkit])
 IT_GETDTDTYPE_CHECK
 IT_CHECK_XULRUNNER_VERSION
 



More information about the distro-pkg-dev mailing list