/hg/icedtea6: Build NetX normally without setting an empty bootc...
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Mon Oct 18 08:04:10 PDT 2010
changeset a944742cdfa9 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=a944742cdfa9
author: Andrew John Hughes <ahughes at redhat.com>
date: Mon Oct 18 16:04:02 2010 +0100
Build NetX normally without setting an empty bootclasspath.
2010-10-18 Andrew John Hughes <ahughes at redhat.com>
* Makefile.am: (NETX_SUN_CLASSES): List internal Sun
class dependencies of NetX. (netx): Build normally
without setting the bootclasspath empty.
diffstat:
2 files changed, 28 insertions(+), 4 deletions(-)
ChangeLog | 8 ++++++++
Makefile.am | 24 ++++++++++++++++++++----
diffs (65 lines):
diff -r d7e98386c764 -r a944742cdfa9 ChangeLog
--- a/ChangeLog Mon Oct 18 14:39:08 2010 +0200
+++ b/ChangeLog Mon Oct 18 16:04:02 2010 +0100
@@ -1,3 +1,11 @@ 2010-10-18 Pavel Tisnovsky <ptisnovs at r
+2010-10-18 Andrew John Hughes <ahughes at redhat.com>
+
+ * Makefile.am:
+ (NETX_SUN_CLASSES): List internal Sun class
+ dependencies of NetX.
+ (netx): Build normally without setting the
+ bootclasspath empty.
+
2010-10-18 Pavel Tisnovsky <ptisnovs at redhat.com>
* Makefile.am:
diff -r d7e98386c764 -r a944742cdfa9 Makefile.am
--- a/Makefile.am Mon Oct 18 14:39:08 2010 +0200
+++ b/Makefile.am Mon Oct 18 16:04:02 2010 +0100
@@ -86,13 +86,29 @@ NETX_BOOTSTRAP_CLASSES = \
$(SHARE)/javax/swing/JTable.java \
$(SHARE)/java/security/KeyStore.java
+# IT563 - NetX uses sun.security code
+# IT564 - NetX depends on sun.misc.BASE64Encoder
+# IT570 - NetX depends on sun.applet.AppletViewPanel
+# IT571 - NetX depends on com.sun.net.ssl.internal.ssl.X509ExtendedTrustManager.java
+NETX_SUN_CLASSES = \
+ $(SHARE)/sun/security/provider/X509Factory.java \
+ $(SHARE)/sun/security/util/SecurityConstants.java \
+ $(SHARE)/sun/security/util/HostnameChecker.java \
+ $(SHARE)/sun/security/util/DerValue.java \
+ $(SHARE)/sun/security/x509/X500Name.java \
+ $(SHARE)/sun/misc/BASE64Encoder.java \
+ $(SHARE)/sun/applet/AppletViewerPanel.java \
+ $(SHARE)/sun/security/validator/ValidatorException.java \
+ $(SHARE)/com/sun/net/ssl/internal/ssl/X509ExtendedTrustManager.java
+
# PR42003 - javax.swing.plaf.basic.BasicDirectoryModel
# PR43389 - javax.management.StandardMBean
ICEDTEA_BOOTSTRAP_CLASSES = \
$(SHARE)/javax/swing/plaf/basic/BasicDirectoryModel.java \
$(SHARE)/javax/management/StandardMBean.java \
$(SHARE)/com/sun/java/swing/plaf/nimbus/NimbusLookAndFeel.java \
- $(NETX_BOOTSTRAP_CLASSES)
+ $(NETX_BOOTSTRAP_CLASSES) \
+ $(NETX_SUN_CLASSES)
# Flags
IT_CFLAGS=$(CFLAGS) $(ARCHFLAG)
@@ -1868,12 +1884,12 @@ netx-source-files.txt:
netx-source-files.txt:
find $(NETX_SRCDIR) -name '*.java' | sort > $@
-stamps/netx.stamp: netx-source-files.txt stamps/rt-class-files.stamp
+stamps/netx.stamp: netx-source-files.txt stamps/rt.stamp
mkdir -p $(abs_top_builddir)/netx.build
$(BOOT_DIR)/bin/javac $(IT_JAVACFLAGS) \
-d $(abs_top_builddir)/netx.build \
- -sourcepath $(NETX_SRCDIR):$(SOURCEPATH_DIRS) \
- -classpath $(RUNTIME) -bootclasspath \'\' \
+ -sourcepath $(NETX_SRCDIR) \
+ -bootclasspath $(RUNTIME) \
@netx-source-files.txt
cp -r $(NETX_RESOURCE_DIR) $(abs_top_builddir)/netx.build/net/sourceforge/jnlp
mkdir -p stamps
More information about the distro-pkg-dev
mailing list