/hg/icedtea6: Explicitly compile sun.misc.Unsafe.

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Thu Feb 18 11:31:10 PST 2010


changeset d45442addd83 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=d45442addd83
author: Andrew John Hughes <ahughes at redhat.com>
date: Thu Feb 18 19:31:00 2010 +0000

	Explicitly compile sun.misc.Unsafe.

	2010-02-17 Andrew John Hughes <ahughes at redhat.com>

	 * Makefile.am: Remove dead JAXWS and JAXP
	sourcepaths. Add sun.misc.Unsafe explicitly to ensure
	it is compiled as a bootstrap class.


diffstat:

2 files changed, 15 insertions(+), 1 deletion(-)
ChangeLog   |    7 +++++++
Makefile.am |    9 ++++++++-

diffs (47 lines):

diff -r 76296a4bf985 -r d45442addd83 ChangeLog
--- a/ChangeLog	Wed Feb 17 23:21:43 2010 +0000
+++ b/ChangeLog	Thu Feb 18 19:31:00 2010 +0000
@@ -1,3 +1,10 @@ 2010-02-17 Andrew John Hughes  <ahughes@
+2010-02-17 Andrew John Hughes  <ahughes at redhat.com>
+
+	* Makefile.am:
+	Remove dead JAXWS and JAXP sourcepaths.
+	Add sun.misc.Unsafe explicitly to ensure
+	it is compiled as a bootstrap class.
+
 2010-02-17 Andrew John Hughes  <ahughes at redhat.com>
 
 	* Makefile.am:
diff -r 76296a4bf985 -r d45442addd83 Makefile.am
--- a/Makefile.am	Wed Feb 17 23:21:43 2010 +0000
+++ b/Makefile.am	Thu Feb 18 19:31:00 2010 +0000
@@ -66,7 +66,7 @@ JAXWS = openjdk/jaxws/src/share/classes
 # FIXME (netx): NetX source directories go here
 
 OPENJDK_SOURCEPATH_DIRS = \
-        $(SHARE):$(SOLARIS):$(LANGTOOLS):$(JAXP):$(CORBA):$(JAXWS)
+        $(SHARE):$(SOLARIS):$(LANGTOOLS):$(CORBA)
 
 ABS_SOURCE_DIRS = $(abs_top_builddir)/generated:$(abs_top_builddir)/rt:$(abs_top_srcdir)/rt:$(LIVECONNECT_SRCS)
 
@@ -86,6 +86,9 @@ ICEDTEA_BOOTSTRAP_DIRS = \
 	$(SHARE)/javax/script \
 	$(SHARE)/javax/security/auth/kerberos \
 	$(SHARE)/javax/security/sasl
+
+ICEDTEA_BOOTSTRAP_CLASSES = \
+	$(SHARE)/sun/misc/Unsafe.java
 
 # FIXME (javac): Settings for javac go here
 
@@ -2192,6 +2195,10 @@ rt-source-files.txt: stamps/replace-hots
 	do \
 	  $(FIND) $(abs_top_builddir)/$$dir -name '*.java' >> $@; \
 	done
+	for files in $(ICEDTEA_BOOTSTRAP_CLASSES) ; \
+	do \
+	  echo $$files >> $@ ; \
+	done
 
 stamps/rt-class-files.stamp: $(INITIAL_BOOTSTRAP_LINK_STAMP) rt-source-files.txt
 	mkdir -p lib/rt



More information about the distro-pkg-dev mailing list