[PATCH FOR TESTING] Separation of plugin and NetX into separate JARs
Deepak Bhole
dbhole at redhat.com
Mon Aug 9 14:28:48 PDT 2010
* Dr Andrew John Hughes <ahughes at redhat.com> [2010-08-06 19:14]:
> On 17:34 Fri 06 Aug , Deepak Bhole wrote:
> > * Deepak Bhole <dbhole at redhat.com> [2010-08-06 15:57]:
> > > * Dr Andrew John Hughes <ahughes at redhat.com> [2010-08-06 15:39]:
> > > > On 15:22 Fri 06 Aug , Deepak Bhole wrote:
> > > > > * Dr Andrew John Hughes <ahughes at redhat.com> [2010-08-05 18:28]:
> > > > > > On 15:30 Thu 05 Aug , Deepak Bhole wrote:
> > > > > > > * Dr Andrew John Hughes <ahughes at redhat.com> [2010-08-05 13:50]:
> > > > > > > > The attached patch changes the IcedTea build to produce two
> > > > > > > > jar files (netx.jar and plugin.jar) in the JDK images for NetX
> > > > > > > > and the plugin respectively, rather than adding their classes to
> > > > > > > > rt.jar.
> > > > > > > >
> > > > > > > > Deepak et. al., can you please test this, make any needed changes to
> > > > > > > > the plugin/NetX and commit?
> > > > > > > >
> > > > > > >
> > > > > > > While the patch produces a plugin.jar and a netx.jar, they are not in
> > > > > > > the bootclasspath. As a result, an error happens when something like
> > > > > > > javaws is invoked:
> > > > > > >
> > > > > > > $ $JAVA_HOME/bin/javaws http://www.sweethome3d.com/SweetHome3D.jnlp
> > > > > > > Exception in thread "main" java.lang.NoClassDefFoundError:
> > > > > > > net/sourceforge/jnlp/runtime/Boot
> > > > > > >
> > > > > >
> > > > > > Yes, I expected something like this. That's what I need you to fix.
> > > > > >
> > > > >
> > > > > Ah, in that case ... :)
> > > > >
> > > > > New patch attached. It addresses the issue.
> > > > >
> > > >
> > > > Thanks. Does java actually fail if the bootclasspath contains JAR files
> > > > that don't exist? If not, could we not just have one patch that adds all
> > > > three JAR files?
> > > >
> > >
> > > Good point! I Just tried it. It works fine even if the jars are not
> > > there. I have made the changes and am testing them now. Will post the
> > > patch as soon as it is tested.
> > >
> >
> > New file attached.
> >
>
> Looks good. Couple of niggles:
>
> * Drop the 'icedtea' prefix on the patch name. It's fine as update-bootclasspath.patch.
> I'm planning to do a mass rename of the old ones for 1.10 as the prefix is redundant.
> * You haven't credited yourself in the ChangeLog :-) The new changes should be under
> your name.
>
> Ok to commit to HEAD and 1.9 branch with those changes.
>
Thanks, done:
http://icedtea.classpath.org/hg/icedtea6/rev/0974e80c4a6e
http://icedtea.classpath.org/hg/release/icedtea6-1.9/rev/7816c6d7a641
Cheers,
Deepak
> Thanks for testing.
>
> > Cheers,
> > Deepak
> >
> > > Thanks,
> > > Deepak
> > >
> > > > > Cheers,
> > > > > Deepak
> > > > >
> > > > > > > Cheers,
> > > > > > > Deepak
> > > > > > >
> > > > > > > > 2010-08-05 Andrew John Hughes <ahughes at redhat.com>
> > > > > > > >
> > > > > > > > Produce separate JAR files for NetX and the
> > > > > > > > plugin (netx.jar and plugin.jar) rather than
> > > > > > > > integrating their code into rt.jar.
> > > > > > > > * patches/extensions/liveconnect-dist.patch,
> > > > > > > > * patches/extensions/netx-dist.patch:
> > > > > > > > Remove unneeded patches to OpenJDK build to
> > > > > > > > integrate NetX and the plugin's Java code.
> > > > > > > > * Makefile.am:
> > > > > > > > (ICEDTEA_ENV): Drop ALT_NETX_DIST and
> > > > > > > > ALT_LIVECONNECT_DIST.
> > > > > > > > (.PHONY): Add new clean targets.
> > > > > > > > (icedtea): Remove unneeded NetX and plugin
> > > > > > > > dependencies and copying.
> > > > > > > > (icedtea-debug): Likewise.
> > > > > > > > (icedtea-against-icedtea): Depend on add-plugin
> > > > > > > > and add-netx.
> > > > > > > > (clean-icedtea-against-icedtea): Depend on clean-add-netx
> > > > > > > > and clean-add-plugin.
> > > > > > > > (icedtea-debug-against-icedtea): Depend on add-plugin-debug
> > > > > > > > and add-netx-debug.
> > > > > > > > (clean-icedtea-debug-against-icedtea): Depend on clean-add-netx-debug
> > > > > > > > and clean-add-plugin-debug.
> > > > > > > > (add-plugin): Copy the plugin library and jar file into the jdk images.
> > > > > > > > (clean-add-plugin): Revert add-plugin.
> > > > > > > > (add-plugin-debug): Equivalent of add-plugin for the debug build.
> > > > > > > > (clean-add-plugin-debug): Revert add-plugin-debug.
> > > > > > > > (add-netx): Copy the NetX jar file, about.jnlp and about.jar into the
> > > > > > > > jdk images.
> > > > > > > > (clean-add-netx): Revert add-netx.
> > > > > > > > (add-netx-debug): Equivalent of add-netx for the debug build.
> > > > > > > > (clean-add-netx-debug): Revert add-netx-debug.
> > > > > > > > (icedtea-ecj): Remove plugin and NetX dependencies.
> > > > > > > >
> > > > > > > > Thanks,
> > > > > > > > --
> > > > > > > > Andrew :)
> > > > > > > >
> > > > > > > > Free Java Software Engineer
> > > > > > > > Red Hat, Inc. (http://www.redhat.com)
> > > > > > > >
> > > > > > > > Support Free Java!
> > > > > > > > Contribute to GNU Classpath and the OpenJDK
> > > > > > > > http://www.gnu.org/software/classpath
> > > > > > > > http://openjdk.java.net
> > > > > > > > PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
> > > > > > > > Fingerprint = F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
> > > > > > >
> > > > > > > > diff -r 6530d2aa9076 ChangeLog
> > > > > > > > --- a/ChangeLog Thu Aug 05 16:58:30 2010 +0100
> > > > > > > > +++ b/ChangeLog Thu Aug 05 18:48:29 2010 +0100
> > > > > > > > @@ -1,3 +1,38 @@
> > > > > > > > +2010-08-05 Andrew John Hughes <ahughes at redhat.com>
> > > > > > > > +
> > > > > > > > + Produce separate JAR files for NetX and the
> > > > > > > > + plugin (netx.jar and plugin.jar) rather than
> > > > > > > > + integrating their code into rt.jar.
> > > > > > > > + * patches/extensions/liveconnect-dist.patch,
> > > > > > > > + * patches/extensions/netx-dist.patch:
> > > > > > > > + Remove unneeded patches to OpenJDK build to
> > > > > > > > + integrate NetX and the plugin's Java code.
> > > > > > > > + * Makefile.am:
> > > > > > > > + (ICEDTEA_ENV): Drop ALT_NETX_DIST and
> > > > > > > > + ALT_LIVECONNECT_DIST.
> > > > > > > > + (.PHONY): Add new clean targets.
> > > > > > > > + (icedtea): Remove unneeded NetX and plugin
> > > > > > > > + dependencies and copying.
> > > > > > > > + (icedtea-debug): Likewise.
> > > > > > > > + (icedtea-against-icedtea): Depend on add-plugin
> > > > > > > > + and add-netx.
> > > > > > > > + (clean-icedtea-against-icedtea): Depend on clean-add-netx
> > > > > > > > + and clean-add-plugin.
> > > > > > > > + (icedtea-debug-against-icedtea): Depend on add-plugin-debug
> > > > > > > > + and add-netx-debug.
> > > > > > > > + (clean-icedtea-debug-against-icedtea): Depend on clean-add-netx-debug
> > > > > > > > + and clean-add-plugin-debug.
> > > > > > > > + (add-plugin): Copy the plugin library and jar file into the jdk images.
> > > > > > > > + (clean-add-plugin): Revert add-plugin.
> > > > > > > > + (add-plugin-debug): Equivalent of add-plugin for the debug build.
> > > > > > > > + (clean-add-plugin-debug): Revert add-plugin-debug.
> > > > > > > > + (add-netx): Copy the NetX jar file, about.jnlp and about.jar into the
> > > > > > > > + jdk images.
> > > > > > > > + (clean-add-netx): Revert add-netx.
> > > > > > > > + (add-netx-debug): Equivalent of add-netx for the debug build.
> > > > > > > > + (clean-add-netx-debug): Revert add-netx-debug.
> > > > > > > > + (icedtea-ecj): Remove plugin and NetX dependencies.
> > > > > > > > +
> > > > > > > > 2010-08-05 Andrew John Hughes <ahughes at redhat.com>
> > > > > > > >
> > > > > > > > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560056
> > > > > > > > diff -r 6530d2aa9076 Makefile.am
> > > > > > > > --- a/Makefile.am Thu Aug 05 16:58:30 2010 +0100
> > > > > > > > +++ b/Makefile.am Thu Aug 05 18:48:29 2010 +0100
> > > > > > > > @@ -273,7 +273,6 @@
> > > > > > > > patches/libpng.patch \
> > > > > > > > patches/shark.patch \
> > > > > > > > patches/extensions/netx.patch \
> > > > > > > > - patches/extensions/netx-dist.patch \
> > > > > > > > patches/extensions/netx-umask.patch \
> > > > > > > > patches/icedtea-jtreg-httpTest.patch \
> > > > > > > > patches/arm.patch \
> > > > > > > > @@ -297,8 +296,7 @@
> > > > > > > >
> > > > > > > > if ENABLE_PLUGIN
> > > > > > > > ICEDTEA_PATCHES += \
> > > > > > > > - patches/extensions/liveconnect.patch \
> > > > > > > > - patches/extensions/liveconnect-dist.patch
> > > > > > > > + patches/extensions/liveconnect.patch
> > > > > > > > endif
> > > > > > > >
> > > > > > > > if BUILD_CACAO
> > > > > > > > @@ -433,8 +431,6 @@
> > > > > > > > DEBUG_BINARIES="true" \
> > > > > > > > ALT_DROPS_DIR="$(abs_top_builddir)/drops" \
> > > > > > > > VERBOSE="$(VERBOSE)" \
> > > > > > > > - ALT_NETX_DIST="$(abs_top_builddir)/netx.build" \
> > > > > > > > - ALT_LIVECONNECT_DIST="$(abs_top_builddir)/liveconnect" \
> > > > > > > > ALT_OUTPUTDIR="$(BUILD_OUTPUT_DIR)"
> > > > > > > >
> > > > > > > > if WITH_CACAO
> > > > > > > > @@ -560,7 +556,8 @@
> > > > > > > > clean-icedtea-against-ecj clean-cacao clean-add-cacao clean-add-cacao-debug \
> > > > > > > > clean-ports clean-overlay clean-extract-ecj clean-extract clean-extract-openjdk \
> > > > > > > > clean-replace-hotspot clean-generated clean-download clean-hgforest clean-download-openjdk \
> > > > > > > > - clean-rewriter clean-rewrite-rhino
> > > > > > > > + clean-rewriter clean-rewrite-rhino clean-add-netx clean-add-netx-debug \
> > > > > > > > + clean-add-plugin clean-add-plugin-debug
> > > > > > > >
> > > > > > > > env:
> > > > > > > > @echo 'unset JAVA_HOME'
> > > > > > > > @@ -1207,9 +1204,7 @@
> > > > > > > > # If you change anything here in the icedtea target, please make sure
> > > > > > > > # you change it in the icedtea-debug target as well.
> > > > > > > > stamps/icedtea.stamp: stamps/bootstrap-directory-symlink.stamp \
> > > > > > > > - stamps/netx-dist.stamp $(OPENJDK_TREE) stamps/plugin.stamp \
> > > > > > > > - extra-lib/about.jar stamps/cacao.stamp $(PULSE_JAVA_TARGET) \
> > > > > > > > - stamps/rewrite-rhino.stamp
> > > > > > > > + $(OPENJDK_TREE) stamps/cacao.stamp $(PULSE_JAVA_TARGET) stamps/rewrite-rhino.stamp
> > > > > > > > $(ARCH_PREFIX) $(MAKE) \
> > > > > > > > $(ICEDTEA_ENV) \
> > > > > > > > -C openjdk \
> > > > > > > > @@ -1218,12 +1213,6 @@
> > > > > > > > mkdir -p $(BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > mkdir -p $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/ext
> > > > > > > > mkdir -p $(BUILD_OUTPUT_DIR)/j2re-image/lib/ext
> > > > > > > > -if ENABLE_PLUGIN
> > > > > > > > - cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > > > > > > > - $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > - cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > > > > > > > - $(BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > -endif
> > > > > > > > if ENABLE_PULSE_JAVA
> > > > > > > > cp -pPRf $(PULSE_JAVA_NATIVE_BUILDDIR)/libpulse-java.so \
> > > > > > > > $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > @@ -1236,10 +1225,6 @@
> > > > > > > > (cd $(PULSE_JAVA_JAVA_SRCDIR) && \
> > > > > > > > $(ZIP) -qur $(BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org )
> > > > > > > > endif
> > > > > > > > - cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > > > > > > > - $(BUILD_OUTPUT_DIR)/j2re-image/lib ; \
> > > > > > > > - cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > > > > > > > - $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib
> > > > > > > > if ZERO_BUILD
> > > > > > > > printf -- '-zero ALIASED_TO -server\n' >> $(BUILD_JRE_ARCH_DIR)/jvm.cfg
> > > > > > > > endif
> > > > > > > > @@ -1283,9 +1268,7 @@
> > > > > > > > rm -f stamps/icedtea.stamp
> > > > > > > >
> > > > > > > > stamps/icedtea-debug.stamp: stamps/bootstrap-directory-symlink.stamp \
> > > > > > > > - stamps/netx-dist.stamp $(OPENJDK_TREE) stamps/plugin.stamp \
> > > > > > > > - extra-lib/about.jar stamps/cacao.stamp $(PULSE_JAVA_TARGET) \
> > > > > > > > - stamps/rewrite-rhino.stamp
> > > > > > > > + $(OPENJDK_TREE) stamps/cacao.stamp $(PULSE_JAVA_TARGET) stamps/rewrite-rhino.stamp
> > > > > > > > $(ARCH_PREFIX) $(MAKE) \
> > > > > > > > $(ICEDTEA_ENV) \
> > > > > > > > -C openjdk \
> > > > > > > > @@ -1294,12 +1277,6 @@
> > > > > > > > mkdir -p $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > mkdir -p $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/ext
> > > > > > > > mkdir -p $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/ext
> > > > > > > > -if ENABLE_PLUGIN
> > > > > > > > - cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > > > > > > > - $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > - cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > > > > > > > - $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > -endif
> > > > > > > > if ENABLE_PULSE_JAVA
> > > > > > > > cp -pPRf $(PULSE_JAVA_NATIVE_BUILDDIR)/libpulse-java.so \
> > > > > > > > $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > @@ -1312,10 +1289,6 @@
> > > > > > > > (cd $(PULSE_JAVA_JAVA_SRCDIR) && \
> > > > > > > > $(ZIP) -qur $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org )
> > > > > > > > endif
> > > > > > > > - cp $(NETX_RESOURCE_DIR)/default.jnlp extra-lib/about.jar \
> > > > > > > > - $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib ; \
> > > > > > > > - cp $(NETX_RESOURCE_DIR)/default.jnlp extra-lib/about.jar \
> > > > > > > > - $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib
> > > > > > > > if ZERO_BUILD
> > > > > > > > printf -- '-zero ALIASED_TO -server\n' >> $(BUILD_DEBUG_JRE_ARCH_DIR)/jvm.cfg
> > > > > > > > endif
> > > > > > > > @@ -1360,27 +1333,109 @@
> > > > > > > > rm -f stamps/icedtea-debug.stamp
> > > > > > > >
> > > > > > > > stamps/icedtea-against-icedtea.stamp: stamps/bootstrap-directory-symlink.stamp \
> > > > > > > > - stamps/icedtea.stamp stamps/add-cacao.stamp stamps/add-zero.stamp
> > > > > > > > + stamps/icedtea.stamp stamps/add-cacao.stamp stamps/add-zero.stamp stamps/add-plugin.stamp \
> > > > > > > > + stamps/add-netx.stamp
> > > > > > > > mkdir -p stamps
> > > > > > > > touch stamps/icedtea-against-icedtea.stamp
> > > > > > > >
> > > > > > > > -clean-icedtea-against-icedtea: clean-add-zero clean-add-cacao
> > > > > > > > +clean-icedtea-against-icedtea: clean-add-zero clean-add-cacao clean-add-plugin clean-add-netx
> > > > > > > > rm -f stamps/icedtea-against-icedtea.stamp
> > > > > > > >
> > > > > > > > stamps/icedtea-debug-against-icedtea.stamp: stamps/bootstrap-directory-symlink.stamp \
> > > > > > > > - stamps/icedtea-debug.stamp stamps/add-cacao-debug.stamp stamps/add-zero-debug.stamp
> > > > > > > > + stamps/icedtea-debug.stamp stamps/add-cacao-debug.stamp stamps/add-zero-debug.stamp \
> > > > > > > > + stamps/add-plugin-debug.stamp stamps/add-netx-debug.stamp
> > > > > > > > mkdir -p stamps
> > > > > > > > touch stamps/icedtea-debug-against-icedtea.stamp
> > > > > > > >
> > > > > > > > -clean-icedtea-debug-against-icedtea: clean-add-zero-debug clean-add-cacao-debug
> > > > > > > > +clean-icedtea-debug-against-icedtea: clean-add-zero-debug clean-add-cacao-debug clean-add-plugin-debug \
> > > > > > > > + clean-add-netx-debug
> > > > > > > > rm -f stamps/icedtea-debug-against-icedtea.stamp
> > > > > > > >
> > > > > > > > +stamps/add-plugin.stamp: stamps/plugin.stamp
> > > > > > > > +if ENABLE_PLUGIN
> > > > > > > > + cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > > > > > > > + $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > + cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > > > > > > > + $(BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > + cp -pPRf $(abs_top_builddir)/liveconnect/lib/classes.jar \
> > > > > > > > + $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/plugin.jar
> > > > > > > > + cp -pPRf $(abs_top_builddir)/liveconnect/lib/classes.jar \
> > > > > > > > + $(BUILD_OUTPUT_DIR)/j2re-image/lib/plugin.jar
> > > > > > > > +endif
> > > > > > > > + touch stamps/add-plugin.stamp
> > > > > > > > +
> > > > > > > > +clean-add-plugin:
> > > > > > > > + rm -f $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)/IcedTeaPlugin.so
> > > > > > > > + rm -f $(BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)/IcedTeaPlugin.so
> > > > > > > > + rm -f $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/plugin.jar
> > > > > > > > + rm -f $(BUILD_OUTPUT_DIR)/j2re-image/lib/plugin.jar
> > > > > > > > + rm -f stamps/add-plugin.stamp
> > > > > > > > +
> > > > > > > > +stamps/add-plugin-debug.stamp: stamps/plugin.stamp
> > > > > > > > +if ENABLE_PLUGIN
> > > > > > > > + cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > > > > > > > + $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > + cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > > > > > > > + $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > > > > > > > + cp -pPRf $(abs_top_builddir)/liveconnect/lib/classes.jar \
> > > > > > > > + $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/plugin.jar
> > > > > > > > + cp -pPRf $(abs_top_builddir)/liveconnect/lib/classes.jar \
> > > > > > > > + $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/plugin.jar
> > > > > > > > +endif
> > > > > > > > + touch stamps/add-plugin-debug.stamp
> > > > > > > > +
> > > > > > > > +clean-add-plugin-debug:
> > > > > > > > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)/IcedTeaPlugin.so
> > > > > > > > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)/IcedTeaPlugin.so
> > > > > > > > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/plugin.jar
> > > > > > > > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/plugin.jar
> > > > > > > > + rm -f stamps/add-plugin-debug.stamp
> > > > > > > > +
> > > > > > > > +stamps/add-netx.stamp: stamps/netx-dist.stamp extra-lib/about.jar
> > > > > > > > + cp -pPRf $(abs_top_builddir)/netx.build/lib/classes.jar \
> > > > > > > > + $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/netx.jar
> > > > > > > > + cp -pPRf $(abs_top_builddir)/netx.build/lib/classes.jar \
> > > > > > > > + $(BUILD_OUTPUT_DIR)/j2re-image/lib/netx.jar
> > > > > > > > + cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > > > > > > > + $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib
> > > > > > > > + cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > > > > > > > + $(BUILD_OUTPUT_DIR)/j2re-image/lib
> > > > > > > > + touch stamps/add-netx.stamp
> > > > > > > > +
> > > > > > > > +clean-add-netx:
> > > > > > > > + rm -f $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/netx.jar
> > > > > > > > + rm -f $(BUILD_OUTPUT_DIR)/j2re-image/lib/netx.jar
> > > > > > > > + rm -f $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/about.jnlp
> > > > > > > > + rm -f $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/about.jar
> > > > > > > > + rm -f $(BUILD_OUTPUT_DIR)/j2re-image/lib/about.jnlp
> > > > > > > > + rm -f $(BUILD_OUTPUT_DIR)/j2re-image/lib/about.jar
> > > > > > > > + rm -f stamps/add-netx.stamp
> > > > > > > > +
> > > > > > > > +stamps/add-netx-debug.stamp: stamps/netx-dist.stamp extra-lib/about.jar
> > > > > > > > + cp -pPRf $(abs_top_builddir)/netx.build/lib/classes.jar \
> > > > > > > > + $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/netx.jar
> > > > > > > > + cp -pPRf $(abs_top_builddir)/netx.build/lib/classes.jar \
> > > > > > > > + $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/netx.jar
> > > > > > > > + cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > > > > > > > + $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib
> > > > > > > > + cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > > > > > > > + $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib
> > > > > > > > + touch stamps/add-netx-debug.stamp
> > > > > > > > +
> > > > > > > > +clean-add-netx-debug:
> > > > > > > > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/netx.jar
> > > > > > > > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/netx.jar
> > > > > > > > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/about.jnlp
> > > > > > > > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/about.jar
> > > > > > > > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/about.jnlp
> > > > > > > > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/about.jar
> > > > > > > > + rm -f stamps/add-netx-debug.stamp
> > > > > > > > +
> > > > > > > > # OpenJDK ecj Targets
> > > > > > > > # ===================
> > > > > > > >
> > > > > > > > stamps/icedtea-ecj.stamp: stamps/bootstrap-directory-symlink-ecj.stamp \
> > > > > > > > - stamps/netx-dist.stamp $(OPENJDK_ECJ_TREE) stamps/cacao.stamp \
> > > > > > > > - stamps/rewrite-rhino.stamp stamps/plugin.stamp
> > > > > > > > + $(OPENJDK_ECJ_TREE) stamps/cacao.stamp stamps/rewrite-rhino.stamp
> > > > > > > > $(ARCH_PREFIX) $(MAKE) \
> > > > > > > > $(ICEDTEA_ENV_ECJ) \
> > > > > > > > -C openjdk-ecj/ \
> > > > > > > > diff -r 6530d2aa9076 patches/extensions/liveconnect-dist.patch
> > > > > > > > --- a/patches/extensions/liveconnect-dist.patch Thu Aug 05 16:58:30 2010 +0100
> > > > > > > > +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
> > > > > > > > @@ -1,76 +0,0 @@
> > > > > > > > -diff -Nru openjdk.orig/jdk/make/common/internal/Defs-liveconnect.gmk openjdk/jdk/make/common/internal/Defs-liveconnect.gmk
> > > > > > > > ---- openjdk.orig/jdk/make/common/internal/Defs-liveconnect.gmk 1970-01-01 01:00:00.000000000 +0100
> > > > > > > > -+++ openjdk/jdk/make/common/internal/Defs-liveconnect.gmk 2009-11-11 02:53:36.000000000 +0000
> > > > > > > > -@@ -0,0 +1,28 @@
> > > > > > > > -+#
> > > > > > > > -+# Copyright 2009 Red Hat, Inc. All Rights Reserved.
> > > > > > > > -+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
> > > > > > > > -+#
> > > > > > > > -+# This code is free software; you can redistribute it and/or modify it
> > > > > > > > -+# under the terms of the GNU General Public License version 2 only, as
> > > > > > > > -+# published by the Free Software Foundation. Red Hat designates this
> > > > > > > > -+# particular file as subject to the "Classpath" exception as provided
> > > > > > > > -+# by Sun in the LICENSE file that accompanied this code.
> > > > > > > > -+#
> > > > > > > > -+# This code is distributed in the hope that it will be useful, but WITHOUT
> > > > > > > > -+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
> > > > > > > > -+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
> > > > > > > > -+# version 2 for more details (a copy is included in the LICENSE file that
> > > > > > > > -+# accompanied this code).
> > > > > > > > -+#
> > > > > > > > -+# You should have received a copy of the GNU General Public License version
> > > > > > > > -+# 2 along with this work; if not, write to the Free Software Foundation,
> > > > > > > > -+# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
> > > > > > > > -+#
> > > > > > > > -+
> > > > > > > > -+# The specific packages that come from or go to rt.jar and tools.jar
> > > > > > > > -+IMPORT_RT_PACKAGES += \
> > > > > > > > -+ netscape/javascript \
> > > > > > > > -+ sun/applet
> > > > > > > > -+
> > > > > > > > -+IMPORT_TOOLS_PACKAGES +=
> > > > > > > > -+
> > > > > > > > -diff -Nru openjdk.orig/jdk/make/common/internal/ImportComponents.gmk openjdk/jdk/make/common/internal/ImportComponents.gmk
> > > > > > > > ---- openjdk.orig/jdk/make/common/internal/ImportComponents.gmk 2009-11-11 02:52:44.000000000 +0000
> > > > > > > > -+++ openjdk/jdk/make/common/internal/ImportComponents.gmk 2009-11-11 02:57:32.000000000 +0000
> > > > > > > > -@@ -49,6 +49,9 @@
> > > > > > > > - ifndef NETX_DIST
> > > > > > > > - include $(BUILDDIR)/common/internal/Defs-netx.gmk
> > > > > > > > - endif
> > > > > > > > -+ifndef LIVECONNECT_DIST
> > > > > > > > -+ include $(BUILDDIR)/common/internal/Defs-liveconnect.gmk
> > > > > > > > -+endif
> > > > > > > > -
> > > > > > > > - # Clean up these lists so empty lists are empty
> > > > > > > > - IMPORT_TOOLS_PACKAGES := $(strip $(IMPORT_TOOLS_PACKAGES))
> > > > > > > > -@@ -123,6 +126,7 @@
> > > > > > > > - $(call import-one-sources,JAXP_DIST,$1)
> > > > > > > > - $(call import-one-sources,JAXWS_DIST,$1)
> > > > > > > > - $(call import-one-sources,NETX_DIST,$1)
> > > > > > > > -+$(call import-one-sources,LIVECONNECT_DIST,$1)
> > > > > > > > - endef
> > > > > > > > -
> > > > > > > > - # Import all component docs into directory $1 (optional)
> > > > > > > > -@@ -162,6 +166,7 @@
> > > > > > > > - $(call import-one-classes,JAXP_DIST,$1)
> > > > > > > > - $(call import-one-classes,JAXWS_DIST,$1)
> > > > > > > > - $(call import-one-classes,NETX_DIST,$1)
> > > > > > > > -+$(call import-one-classes,LIVECONNECT_DIST,$1)
> > > > > > > > - endef
> > > > > > > > -
> > > > > > > > - # Clean up import files
> > > > > > > > -diff -Nru openjdk.orig/jdk/make/common/shared/Defs.gmk openjdk/jdk/make/common/shared/Defs.gmk
> > > > > > > > ---- openjdk.orig/jdk/make/common/shared/Defs.gmk 2009-11-11 02:52:44.000000000 +0000
> > > > > > > > -+++ openjdk/jdk/make/common/shared/Defs.gmk 2009-11-11 02:13:22.000000000 +0000
> > > > > > > > -@@ -365,6 +365,11 @@
> > > > > > > > - else
> > > > > > > > - NETX_DIST =
> > > > > > > > - endif
> > > > > > > > -+ifdef ALT_LIVECONNECT_DIST
> > > > > > > > -+ LIVECONNECT_DIST := $(call FullPath,$(ALT_LIVECONNECT_DIST))
> > > > > > > > -+else
> > > > > > > > -+ LIVECONNECT_DIST =
> > > > > > > > -+endif
> > > > > > > > -
> > > > > > > > - # HOTSPOT_DOCS_IMPORT_PATH: Path to hotspot docs files to import into the docs generation
> > > > > > > > - ifdef ALT_HOTSPOT_DOCS_IMPORT_PATH
> > > > > > > > diff -r 6530d2aa9076 patches/extensions/netx-dist.patch
> > > > > > > > --- a/patches/extensions/netx-dist.patch Thu Aug 05 16:58:30 2010 +0100
> > > > > > > > +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
> > > > > > > > @@ -1,86 +0,0 @@
> > > > > > > > -diff -Nru openjdk.orig/jdk/make/common/internal/Defs-netx.gmk openjdk/jdk/make/common/internal/Defs-netx.gmk
> > > > > > > > ---- openjdk.orig/jdk/make/common/internal/Defs-netx.gmk 1970-01-01 01:00:00.000000000 +0100
> > > > > > > > -+++ openjdk/jdk/make/common/internal/Defs-netx.gmk 2009-05-28 09:18:45.000000000 +0100
> > > > > > > > -@@ -0,0 +1,38 @@
> > > > > > > > -+#
> > > > > > > > -+# Copyright 2009 Red Hat, Inc. All Rights Reserved.
> > > > > > > > -+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
> > > > > > > > -+#
> > > > > > > > -+# This code is free software; you can redistribute it and/or modify it
> > > > > > > > -+# under the terms of the GNU General Public License version 2 only, as
> > > > > > > > -+# published by the Free Software Foundation. Red Hat designates this
> > > > > > > > -+# particular file as subject to the "Classpath" exception as provided
> > > > > > > > -+# by Sun in the LICENSE file that accompanied this code.
> > > > > > > > -+#
> > > > > > > > -+# This code is distributed in the hope that it will be useful, but WITHOUT
> > > > > > > > -+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
> > > > > > > > -+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
> > > > > > > > -+# version 2 for more details (a copy is included in the LICENSE file that
> > > > > > > > -+# accompanied this code).
> > > > > > > > -+#
> > > > > > > > -+# You should have received a copy of the GNU General Public License version
> > > > > > > > -+# 2 along with this work; if not, write to the Free Software Foundation,
> > > > > > > > -+# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
> > > > > > > > -+#
> > > > > > > > -+
> > > > > > > > -+# The specific packages that come from or go to rt.jar and tools.jar
> > > > > > > > -+IMPORT_RT_PACKAGES += \
> > > > > > > > -+ net/sourceforge/jnlp \
> > > > > > > > -+ net/sourceforge/jnlp/tools \
> > > > > > > > -+ net/sourceforge/jnlp/runtime \
> > > > > > > > -+ net/sourceforge/jnlp/util \
> > > > > > > > -+ net/sourceforge/jnlp/services \
> > > > > > > > -+ net/sourceforge/jnlp/security \
> > > > > > > > -+ net/sourceforge/jnlp/security/viewer \
> > > > > > > > -+ net/sourceforge/jnlp/cache \
> > > > > > > > -+ net/sourceforge/jnlp/event \
> > > > > > > > -+ net/sourceforge/jnlp/resources \
> > > > > > > > -+ net/sourceforge/nanoxml \
> > > > > > > > -+ javax/jnlp
> > > > > > > > -+
> > > > > > > > -+IMPORT_TOOLS_PACKAGES +=
> > > > > > > > -+
> > > > > > > > -diff -Nru openjdk.orig/jdk/make/common/internal/ImportComponents.gmk openjdk/jdk/make/common/internal/ImportComponents.gmk
> > > > > > > > ---- openjdk.orig/jdk/make/common/internal/ImportComponents.gmk 2009-05-29 02:09:27.000000000 +0100
> > > > > > > > -+++ openjdk/jdk/make/common/internal/ImportComponents.gmk 2009-05-29 02:10:56.000000000 +0100
> > > > > > > > -@@ -46,6 +46,9 @@
> > > > > > > > - ifndef JAXWS_DIST
> > > > > > > > - include $(BUILDDIR)/common/internal/Defs-jaxws.gmk
> > > > > > > > - endif
> > > > > > > > -+ifndef NETX_DIST
> > > > > > > > -+ include $(BUILDDIR)/common/internal/Defs-netx.gmk
> > > > > > > > -+endif
> > > > > > > > -
> > > > > > > > - # Clean up these lists so empty lists are empty
> > > > > > > > - IMPORT_TOOLS_PACKAGES := $(strip $(IMPORT_TOOLS_PACKAGES))
> > > > > > > > -@@ -119,6 +122,7 @@
> > > > > > > > - $(call import-one-sources,CORBA_DIST,$1)
> > > > > > > > - $(call import-one-sources,JAXP_DIST,$1)
> > > > > > > > - $(call import-one-sources,JAXWS_DIST,$1)
> > > > > > > > -+$(call import-one-sources,NETX_DIST,$1)
> > > > > > > > - endef
> > > > > > > > -
> > > > > > > > - # Import all component docs into directory $1 (optional)
> > > > > > > > -@@ -157,6 +161,7 @@
> > > > > > > > - $(call import-one-classes,CORBA_DIST,$1)
> > > > > > > > - $(call import-one-classes,JAXP_DIST,$1)
> > > > > > > > - $(call import-one-classes,JAXWS_DIST,$1)
> > > > > > > > -+$(call import-one-classes,NETX_DIST,$1)
> > > > > > > > - endef
> > > > > > > > -
> > > > > > > > - # Clean up import files
> > > > > > > > -diff -Nru openjdk.orig/jdk/make/common/shared/Defs.gmk openjdk/jdk/make/common/shared/Defs.gmk
> > > > > > > > ---- openjdk.orig/jdk/make/common/shared/Defs.gmk 2009-05-29 02:09:27.000000000 +0100
> > > > > > > > -+++ openjdk/jdk/make/common/shared/Defs.gmk 2009-05-29 02:11:18.000000000 +0100
> > > > > > > > -@@ -344,6 +344,11 @@
> > > > > > > > - else
> > > > > > > > - JAXWS_DIST =
> > > > > > > > - endif
> > > > > > > > -+ifdef ALT_NETX_DIST
> > > > > > > > -+ NETX_DIST := $(call FullPath,$(ALT_NETX_DIST))
> > > > > > > > -+else
> > > > > > > > -+ NETX_DIST =
> > > > > > > > -+endif
> > > > > > > > -
> > > > > > > > - # HOTSPOT_DOCS_IMPORT_PATH: Path to hotspot docs files to import into the docs generation
> > > > > > > > - ifdef ALT_HOTSPOT_DOCS_IMPORT_PATH
> > > > > > >
> > > > > >
> > > > > > --
> > > > > > Andrew :)
> > > > > >
> > > > > > Free Java Software Engineer
> > > > > > Red Hat, Inc. (http://www.redhat.com)
> > > > > >
> > > > > > Support Free Java!
> > > > > > Contribute to GNU Classpath and the OpenJDK
> > > > > > http://www.gnu.org/software/classpath
> > > > > > http://openjdk.java.net
> > > > > > PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
> > > > > > Fingerprint = F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
> > > >
> > > >
> > > > --
> > > > Andrew :)
> > > >
> > > > Free Java Software Engineer
> > > > Red Hat, Inc. (http://www.redhat.com)
> > > >
> > > > Support Free Java!
> > > > Contribute to GNU Classpath and the OpenJDK
> > > > http://www.gnu.org/software/classpath
> > > > http://openjdk.java.net
> > > > PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
> > > > Fingerprint = F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
>
> > diff -r da8128c0b021 ChangeLog
> > --- a/ChangeLog Fri Aug 06 11:53:49 2010 +0100
> > +++ b/ChangeLog Fri Aug 06 17:31:39 2010 -0400
> > @@ -1,3 +1,40 @@
> > +2010-08-05 Andrew John Hughes <ahughes at redhat.com>
> > +
> > + Produce separate JAR files for NetX and the
> > + plugin (netx.jar and plugin.jar) rather than
> > + integrating their code into rt.jar.
> > + * patches/extensions/liveconnect-dist.patch,
> > + * patches/extensions/netx-dist.patch:
> > + Remove unneeded patches to OpenJDK build to
> > + integrate NetX and the plugin's Java code.
> > + * patches/icedtea-update-bootclasspath.patch: New patch. Adds netx,
> > + rhino and plugin jars to the bootclasspath.
> > + * Makefile.am:
> > + (ICEDTEA_ENV): Drop ALT_NETX_DIST and
> > + ALT_LIVECONNECT_DIST.
> > + (.PHONY): Add new clean targets.
> > + (icedtea): Remove unneeded NetX and plugin
> > + dependencies and copying. Add icedtea-update-bootclasspath.patch.
> > + (icedtea-debug): Likewise.
> > + (icedtea-against-icedtea): Depend on add-plugin
> > + and add-netx.
> > + (clean-icedtea-against-icedtea): Depend on clean-add-netx
> > + and clean-add-plugin.
> > + (icedtea-debug-against-icedtea): Depend on add-plugin-debug
> > + and add-netx-debug.
> > + (clean-icedtea-debug-against-icedtea): Depend on clean-add-netx-debug
> > + and clean-add-plugin-debug.
> > + (add-plugin): Copy the plugin library and jar file into the jdk images.
> > + (clean-add-plugin): Revert add-plugin.
> > + (add-plugin-debug): Equivalent of add-plugin for the debug build.
> > + (clean-add-plugin-debug): Revert add-plugin-debug.
> > + (add-netx): Copy the NetX jar file, about.jnlp and about.jar into the
> > + jdk images.
> > + (clean-add-netx): Revert add-netx.
> > + (add-netx-debug): Equivalent of add-netx for the debug build.
> > + (clean-add-netx-debug): Revert add-netx-debug.
> > + (icedtea-ecj): Remove plugin and NetX dependencies.
> > +
> > 2010-08-06 Andrew John Hughes <ahughes at redhat.com>
> >
> > Fix build on PAX-enabled kernels.
> > diff -r da8128c0b021 Makefile.am
> > --- a/Makefile.am Fri Aug 06 11:53:49 2010 +0100
> > +++ b/Makefile.am Fri Aug 06 17:31:39 2010 -0400
> > @@ -270,10 +270,10 @@
> > patches/icedtea-parisc.patch \
> > patches/icedtea-sh4-support.patch \
> > patches/icedtea-policy-evaluation.patch \
> > + patches/icedtea-update-bootclasspath.patch \
> > patches/libpng.patch \
> > patches/shark.patch \
> > patches/extensions/netx.patch \
> > - patches/extensions/netx-dist.patch \
> > patches/extensions/netx-umask.patch \
> > patches/icedtea-jtreg-httpTest.patch \
> > patches/arm.patch \
> > @@ -298,8 +298,7 @@
> >
> > if ENABLE_PLUGIN
> > ICEDTEA_PATCHES += \
> > - patches/extensions/liveconnect.patch \
> > - patches/extensions/liveconnect-dist.patch
> > + patches/extensions/liveconnect.patch
> > endif
> >
> > if BUILD_CACAO
> > @@ -444,8 +443,6 @@
> > DEBUG_BINARIES="true" \
> > ALT_DROPS_DIR="$(abs_top_builddir)/drops" \
> > VERBOSE="$(VERBOSE)" \
> > - ALT_NETX_DIST="$(abs_top_builddir)/netx.build" \
> > - ALT_LIVECONNECT_DIST="$(abs_top_builddir)/liveconnect" \
> > ALT_OUTPUTDIR="$(BUILD_OUTPUT_DIR)"
> >
> > if WITH_CACAO
> > @@ -571,7 +568,8 @@
> > clean-icedtea-against-ecj clean-cacao clean-add-cacao clean-add-cacao-debug \
> > clean-ports clean-overlay clean-extract-ecj clean-extract clean-extract-openjdk \
> > clean-replace-hotspot clean-generated clean-download clean-hgforest clean-download-openjdk \
> > - clean-rewriter clean-rewrite-rhino
> > + clean-rewriter clean-rewrite-rhino clean-add-netx clean-add-netx-debug \
> > + clean-add-plugin clean-add-plugin-debug
> >
> > env:
> > @echo 'unset JAVA_HOME'
> > @@ -1218,9 +1216,7 @@
> > # If you change anything here in the icedtea target, please make sure
> > # you change it in the icedtea-debug target as well.
> > stamps/icedtea.stamp: stamps/bootstrap-directory-symlink.stamp \
> > - stamps/netx-dist.stamp $(OPENJDK_TREE) stamps/plugin.stamp \
> > - extra-lib/about.jar stamps/cacao.stamp $(PULSE_JAVA_TARGET) \
> > - stamps/rewrite-rhino.stamp
> > + $(OPENJDK_TREE) stamps/cacao.stamp $(PULSE_JAVA_TARGET) stamps/rewrite-rhino.stamp
> > $(ARCH_PREFIX) $(MAKE) \
> > $(ICEDTEA_ENV) \
> > -C openjdk \
> > @@ -1229,12 +1225,6 @@
> > mkdir -p $(BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > mkdir -p $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/ext
> > mkdir -p $(BUILD_OUTPUT_DIR)/j2re-image/lib/ext
> > -if ENABLE_PLUGIN
> > - cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > - $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > - cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > - $(BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > -endif
> > if ENABLE_PULSE_JAVA
> > cp -pPRf $(PULSE_JAVA_NATIVE_BUILDDIR)/libpulse-java.so \
> > $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > @@ -1247,10 +1237,6 @@
> > (cd $(PULSE_JAVA_JAVA_SRCDIR) && \
> > $(ZIP) -qur $(BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org )
> > endif
> > - cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > - $(BUILD_OUTPUT_DIR)/j2re-image/lib ; \
> > - cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > - $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib
> > if ZERO_BUILD
> > printf -- '-zero ALIASED_TO -server\n' >> $(BUILD_JRE_ARCH_DIR)/jvm.cfg
> > endif
> > @@ -1294,9 +1280,7 @@
> > rm -f stamps/icedtea.stamp
> >
> > stamps/icedtea-debug.stamp: stamps/bootstrap-directory-symlink.stamp \
> > - stamps/netx-dist.stamp $(OPENJDK_TREE) stamps/plugin.stamp \
> > - extra-lib/about.jar stamps/cacao.stamp $(PULSE_JAVA_TARGET) \
> > - stamps/rewrite-rhino.stamp
> > + $(OPENJDK_TREE) stamps/cacao.stamp $(PULSE_JAVA_TARGET) stamps/rewrite-rhino.stamp
> > $(ARCH_PREFIX) $(MAKE) \
> > $(ICEDTEA_ENV) \
> > -C openjdk \
> > @@ -1305,12 +1289,6 @@
> > mkdir -p $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > mkdir -p $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/ext
> > mkdir -p $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/ext
> > -if ENABLE_PLUGIN
> > - cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > - $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > - cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > - $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > -endif
> > if ENABLE_PULSE_JAVA
> > cp -pPRf $(PULSE_JAVA_NATIVE_BUILDDIR)/libpulse-java.so \
> > $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > @@ -1323,10 +1301,6 @@
> > (cd $(PULSE_JAVA_JAVA_SRCDIR) && \
> > $(ZIP) -qur $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org )
> > endif
> > - cp $(NETX_RESOURCE_DIR)/default.jnlp extra-lib/about.jar \
> > - $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib ; \
> > - cp $(NETX_RESOURCE_DIR)/default.jnlp extra-lib/about.jar \
> > - $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib
> > if ZERO_BUILD
> > printf -- '-zero ALIASED_TO -server\n' >> $(BUILD_DEBUG_JRE_ARCH_DIR)/jvm.cfg
> > endif
> > @@ -1371,27 +1345,109 @@
> > rm -f stamps/icedtea-debug.stamp
> >
> > stamps/icedtea-against-icedtea.stamp: stamps/bootstrap-directory-symlink.stamp \
> > - stamps/icedtea.stamp stamps/add-cacao.stamp stamps/add-zero.stamp
> > + stamps/icedtea.stamp stamps/add-cacao.stamp stamps/add-zero.stamp stamps/add-plugin.stamp \
> > + stamps/add-netx.stamp
> > mkdir -p stamps
> > touch stamps/icedtea-against-icedtea.stamp
> >
> > -clean-icedtea-against-icedtea: clean-add-zero clean-add-cacao
> > +clean-icedtea-against-icedtea: clean-add-zero clean-add-cacao clean-add-plugin clean-add-netx
> > rm -f stamps/icedtea-against-icedtea.stamp
> >
> > stamps/icedtea-debug-against-icedtea.stamp: stamps/bootstrap-directory-symlink.stamp \
> > - stamps/icedtea-debug.stamp stamps/add-cacao-debug.stamp stamps/add-zero-debug.stamp
> > + stamps/icedtea-debug.stamp stamps/add-cacao-debug.stamp stamps/add-zero-debug.stamp \
> > + stamps/add-plugin-debug.stamp stamps/add-netx-debug.stamp
> > mkdir -p stamps
> > touch stamps/icedtea-debug-against-icedtea.stamp
> >
> > -clean-icedtea-debug-against-icedtea: clean-add-zero-debug clean-add-cacao-debug
> > +clean-icedtea-debug-against-icedtea: clean-add-zero-debug clean-add-cacao-debug clean-add-plugin-debug \
> > + clean-add-netx-debug
> > rm -f stamps/icedtea-debug-against-icedtea.stamp
> >
> > +stamps/add-plugin.stamp: stamps/plugin.stamp
> > +if ENABLE_PLUGIN
> > + cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > + $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > + cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > + $(BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > + cp -pPRf $(abs_top_builddir)/liveconnect/lib/classes.jar \
> > + $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/plugin.jar
> > + cp -pPRf $(abs_top_builddir)/liveconnect/lib/classes.jar \
> > + $(BUILD_OUTPUT_DIR)/j2re-image/lib/plugin.jar
> > +endif
> > + touch stamps/add-plugin.stamp
> > +
> > +clean-add-plugin:
> > + rm -f $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)/IcedTeaPlugin.so
> > + rm -f $(BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)/IcedTeaPlugin.so
> > + rm -f $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/plugin.jar
> > + rm -f $(BUILD_OUTPUT_DIR)/j2re-image/lib/plugin.jar
> > + rm -f stamps/add-plugin.stamp
> > +
> > +stamps/add-plugin-debug.stamp: stamps/plugin.stamp
> > +if ENABLE_PLUGIN
> > + cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > + $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)
> > + cp -pPRf $(PLUGIN_DIR)/IcedTeaPlugin.so \
> > + $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)
> > + cp -pPRf $(abs_top_builddir)/liveconnect/lib/classes.jar \
> > + $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/plugin.jar
> > + cp -pPRf $(abs_top_builddir)/liveconnect/lib/classes.jar \
> > + $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/plugin.jar
> > +endif
> > + touch stamps/add-plugin-debug.stamp
> > +
> > +clean-add-plugin-debug:
> > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/$(INSTALL_ARCH_DIR)/IcedTeaPlugin.so
> > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/$(INSTALL_ARCH_DIR)/IcedTeaPlugin.so
> > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/plugin.jar
> > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/plugin.jar
> > + rm -f stamps/add-plugin-debug.stamp
> > +
> > +stamps/add-netx.stamp: stamps/netx-dist.stamp extra-lib/about.jar
> > + cp -pPRf $(abs_top_builddir)/netx.build/lib/classes.jar \
> > + $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/netx.jar
> > + cp -pPRf $(abs_top_builddir)/netx.build/lib/classes.jar \
> > + $(BUILD_OUTPUT_DIR)/j2re-image/lib/netx.jar
> > + cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > + $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib
> > + cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > + $(BUILD_OUTPUT_DIR)/j2re-image/lib
> > + touch stamps/add-netx.stamp
> > +
> > +clean-add-netx:
> > + rm -f $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/netx.jar
> > + rm -f $(BUILD_OUTPUT_DIR)/j2re-image/lib/netx.jar
> > + rm -f $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/about.jnlp
> > + rm -f $(BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/about.jar
> > + rm -f $(BUILD_OUTPUT_DIR)/j2re-image/lib/about.jnlp
> > + rm -f $(BUILD_OUTPUT_DIR)/j2re-image/lib/about.jar
> > + rm -f stamps/add-netx.stamp
> > +
> > +stamps/add-netx-debug.stamp: stamps/netx-dist.stamp extra-lib/about.jar
> > + cp -pPRf $(abs_top_builddir)/netx.build/lib/classes.jar \
> > + $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/netx.jar
> > + cp -pPRf $(abs_top_builddir)/netx.build/lib/classes.jar \
> > + $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/netx.jar
> > + cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > + $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib
> > + cp $(NETX_RESOURCE_DIR)/about.jnlp extra-lib/about.jar \
> > + $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib
> > + touch stamps/add-netx-debug.stamp
> > +
> > +clean-add-netx-debug:
> > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/netx.jar
> > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/netx.jar
> > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/about.jnlp
> > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/jre/lib/about.jar
> > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/about.jnlp
> > + rm -f $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/about.jar
> > + rm -f stamps/add-netx-debug.stamp
> > +
> > # OpenJDK ecj Targets
> > # ===================
> >
> > stamps/icedtea-ecj.stamp: stamps/bootstrap-directory-symlink-ecj.stamp \
> > - stamps/netx-dist.stamp $(OPENJDK_ECJ_TREE) stamps/cacao.stamp \
> > - stamps/rewrite-rhino.stamp stamps/plugin.stamp
> > + $(OPENJDK_ECJ_TREE) stamps/cacao.stamp stamps/rewrite-rhino.stamp
> > $(ARCH_PREFIX) $(MAKE) \
> > $(ICEDTEA_ENV_ECJ) \
> > -C openjdk-ecj/ \
> > diff -r da8128c0b021 patches/extensions/liveconnect-dist.patch
> > --- a/patches/extensions/liveconnect-dist.patch Fri Aug 06 11:53:49 2010 +0100
> > +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
> > @@ -1,76 +0,0 @@
> > -diff -Nru openjdk.orig/jdk/make/common/internal/Defs-liveconnect.gmk openjdk/jdk/make/common/internal/Defs-liveconnect.gmk
> > ---- openjdk.orig/jdk/make/common/internal/Defs-liveconnect.gmk 1970-01-01 01:00:00.000000000 +0100
> > -+++ openjdk/jdk/make/common/internal/Defs-liveconnect.gmk 2009-11-11 02:53:36.000000000 +0000
> > -@@ -0,0 +1,28 @@
> > -+#
> > -+# Copyright 2009 Red Hat, Inc. All Rights Reserved.
> > -+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
> > -+#
> > -+# This code is free software; you can redistribute it and/or modify it
> > -+# under the terms of the GNU General Public License version 2 only, as
> > -+# published by the Free Software Foundation. Red Hat designates this
> > -+# particular file as subject to the "Classpath" exception as provided
> > -+# by Sun in the LICENSE file that accompanied this code.
> > -+#
> > -+# This code is distributed in the hope that it will be useful, but WITHOUT
> > -+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
> > -+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
> > -+# version 2 for more details (a copy is included in the LICENSE file that
> > -+# accompanied this code).
> > -+#
> > -+# You should have received a copy of the GNU General Public License version
> > -+# 2 along with this work; if not, write to the Free Software Foundation,
> > -+# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
> > -+#
> > -+
> > -+# The specific packages that come from or go to rt.jar and tools.jar
> > -+IMPORT_RT_PACKAGES += \
> > -+ netscape/javascript \
> > -+ sun/applet
> > -+
> > -+IMPORT_TOOLS_PACKAGES +=
> > -+
> > -diff -Nru openjdk.orig/jdk/make/common/internal/ImportComponents.gmk openjdk/jdk/make/common/internal/ImportComponents.gmk
> > ---- openjdk.orig/jdk/make/common/internal/ImportComponents.gmk 2009-11-11 02:52:44.000000000 +0000
> > -+++ openjdk/jdk/make/common/internal/ImportComponents.gmk 2009-11-11 02:57:32.000000000 +0000
> > -@@ -49,6 +49,9 @@
> > - ifndef NETX_DIST
> > - include $(BUILDDIR)/common/internal/Defs-netx.gmk
> > - endif
> > -+ifndef LIVECONNECT_DIST
> > -+ include $(BUILDDIR)/common/internal/Defs-liveconnect.gmk
> > -+endif
> > -
> > - # Clean up these lists so empty lists are empty
> > - IMPORT_TOOLS_PACKAGES := $(strip $(IMPORT_TOOLS_PACKAGES))
> > -@@ -123,6 +126,7 @@
> > - $(call import-one-sources,JAXP_DIST,$1)
> > - $(call import-one-sources,JAXWS_DIST,$1)
> > - $(call import-one-sources,NETX_DIST,$1)
> > -+$(call import-one-sources,LIVECONNECT_DIST,$1)
> > - endef
> > -
> > - # Import all component docs into directory $1 (optional)
> > -@@ -162,6 +166,7 @@
> > - $(call import-one-classes,JAXP_DIST,$1)
> > - $(call import-one-classes,JAXWS_DIST,$1)
> > - $(call import-one-classes,NETX_DIST,$1)
> > -+$(call import-one-classes,LIVECONNECT_DIST,$1)
> > - endef
> > -
> > - # Clean up import files
> > -diff -Nru openjdk.orig/jdk/make/common/shared/Defs.gmk openjdk/jdk/make/common/shared/Defs.gmk
> > ---- openjdk.orig/jdk/make/common/shared/Defs.gmk 2009-11-11 02:52:44.000000000 +0000
> > -+++ openjdk/jdk/make/common/shared/Defs.gmk 2009-11-11 02:13:22.000000000 +0000
> > -@@ -365,6 +365,11 @@
> > - else
> > - NETX_DIST =
> > - endif
> > -+ifdef ALT_LIVECONNECT_DIST
> > -+ LIVECONNECT_DIST := $(call FullPath,$(ALT_LIVECONNECT_DIST))
> > -+else
> > -+ LIVECONNECT_DIST =
> > -+endif
> > -
> > - # HOTSPOT_DOCS_IMPORT_PATH: Path to hotspot docs files to import into the docs generation
> > - ifdef ALT_HOTSPOT_DOCS_IMPORT_PATH
> > diff -r da8128c0b021 patches/extensions/netx-dist.patch
> > --- a/patches/extensions/netx-dist.patch Fri Aug 06 11:53:49 2010 +0100
> > +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
> > @@ -1,86 +0,0 @@
> > -diff -Nru openjdk.orig/jdk/make/common/internal/Defs-netx.gmk openjdk/jdk/make/common/internal/Defs-netx.gmk
> > ---- openjdk.orig/jdk/make/common/internal/Defs-netx.gmk 1970-01-01 01:00:00.000000000 +0100
> > -+++ openjdk/jdk/make/common/internal/Defs-netx.gmk 2009-05-28 09:18:45.000000000 +0100
> > -@@ -0,0 +1,38 @@
> > -+#
> > -+# Copyright 2009 Red Hat, Inc. All Rights Reserved.
> > -+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
> > -+#
> > -+# This code is free software; you can redistribute it and/or modify it
> > -+# under the terms of the GNU General Public License version 2 only, as
> > -+# published by the Free Software Foundation. Red Hat designates this
> > -+# particular file as subject to the "Classpath" exception as provided
> > -+# by Sun in the LICENSE file that accompanied this code.
> > -+#
> > -+# This code is distributed in the hope that it will be useful, but WITHOUT
> > -+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
> > -+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
> > -+# version 2 for more details (a copy is included in the LICENSE file that
> > -+# accompanied this code).
> > -+#
> > -+# You should have received a copy of the GNU General Public License version
> > -+# 2 along with this work; if not, write to the Free Software Foundation,
> > -+# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
> > -+#
> > -+
> > -+# The specific packages that come from or go to rt.jar and tools.jar
> > -+IMPORT_RT_PACKAGES += \
> > -+ net/sourceforge/jnlp \
> > -+ net/sourceforge/jnlp/tools \
> > -+ net/sourceforge/jnlp/runtime \
> > -+ net/sourceforge/jnlp/util \
> > -+ net/sourceforge/jnlp/services \
> > -+ net/sourceforge/jnlp/security \
> > -+ net/sourceforge/jnlp/security/viewer \
> > -+ net/sourceforge/jnlp/cache \
> > -+ net/sourceforge/jnlp/event \
> > -+ net/sourceforge/jnlp/resources \
> > -+ net/sourceforge/nanoxml \
> > -+ javax/jnlp
> > -+
> > -+IMPORT_TOOLS_PACKAGES +=
> > -+
> > -diff -Nru openjdk.orig/jdk/make/common/internal/ImportComponents.gmk openjdk/jdk/make/common/internal/ImportComponents.gmk
> > ---- openjdk.orig/jdk/make/common/internal/ImportComponents.gmk 2009-05-29 02:09:27.000000000 +0100
> > -+++ openjdk/jdk/make/common/internal/ImportComponents.gmk 2009-05-29 02:10:56.000000000 +0100
> > -@@ -46,6 +46,9 @@
> > - ifndef JAXWS_DIST
> > - include $(BUILDDIR)/common/internal/Defs-jaxws.gmk
> > - endif
> > -+ifndef NETX_DIST
> > -+ include $(BUILDDIR)/common/internal/Defs-netx.gmk
> > -+endif
> > -
> > - # Clean up these lists so empty lists are empty
> > - IMPORT_TOOLS_PACKAGES := $(strip $(IMPORT_TOOLS_PACKAGES))
> > -@@ -119,6 +122,7 @@
> > - $(call import-one-sources,CORBA_DIST,$1)
> > - $(call import-one-sources,JAXP_DIST,$1)
> > - $(call import-one-sources,JAXWS_DIST,$1)
> > -+$(call import-one-sources,NETX_DIST,$1)
> > - endef
> > -
> > - # Import all component docs into directory $1 (optional)
> > -@@ -157,6 +161,7 @@
> > - $(call import-one-classes,CORBA_DIST,$1)
> > - $(call import-one-classes,JAXP_DIST,$1)
> > - $(call import-one-classes,JAXWS_DIST,$1)
> > -+$(call import-one-classes,NETX_DIST,$1)
> > - endef
> > -
> > - # Clean up import files
> > -diff -Nru openjdk.orig/jdk/make/common/shared/Defs.gmk openjdk/jdk/make/common/shared/Defs.gmk
> > ---- openjdk.orig/jdk/make/common/shared/Defs.gmk 2009-05-29 02:09:27.000000000 +0100
> > -+++ openjdk/jdk/make/common/shared/Defs.gmk 2009-05-29 02:11:18.000000000 +0100
> > -@@ -344,6 +344,11 @@
> > - else
> > - JAXWS_DIST =
> > - endif
> > -+ifdef ALT_NETX_DIST
> > -+ NETX_DIST := $(call FullPath,$(ALT_NETX_DIST))
> > -+else
> > -+ NETX_DIST =
> > -+endif
> > -
> > - # HOTSPOT_DOCS_IMPORT_PATH: Path to hotspot docs files to import into the docs generation
> > - ifdef ALT_HOTSPOT_DOCS_IMPORT_PATH
> > diff -r da8128c0b021 patches/icedtea-rhino.patch
> > --- a/patches/icedtea-rhino.patch Fri Aug 06 11:53:49 2010 +0100
> > +++ b/patches/icedtea-rhino.patch Fri Aug 06 17:31:39 2010 -0400
> > @@ -1,13 +1,3 @@
> > ---- openjdk/hotspot/src/share/vm/runtime/os.cpp.orig 2008-11-22 00:11:18.000000000 +0000
> > -+++ openjdk/hotspot/src/share/vm/runtime/os.cpp 2008-12-03 21:16:14.000000000 +0000
> > -@@ -886,6 +886,7 @@
> > - "%/lib/jsse.jar:"
> > - "%/lib/jce.jar:"
> > - "%/lib/charsets.jar:"
> > -+ "%/lib/rhino.jar:"
> > - "%/classes";
> > - char* sysclasspath = format_boot_path(classpath_format, home, home_len, fileSep, pathSep);
> > - if (sysclasspath == NULL) return false;
> > --- openjdk/jdk/make/com/sun/script/Makefile.orig 2008-11-25 09:01:10.000000000 +0000
> > +++ openjdk/jdk/make/com/sun/script/Makefile 2008-12-03 21:13:14.000000000 +0000
> > @@ -31,6 +31,8 @@
> > diff -r da8128c0b021 patches/icedtea-update-bootclasspath.patch
> > --- /dev/null Thu Jan 01 00:00:00 1970 +0000
> > +++ b/patches/icedtea-update-bootclasspath.patch Fri Aug 06 17:31:39 2010 -0400
> > @@ -0,0 +1,13 @@
> > +diff -ur openjdk.orig/hotspot/src/share/vm/runtime/os.cpp openjdk/hotspot/src/share/vm/runtime/os.cpp
> > +--- openjdk.orig/hotspot/src/share/vm/runtime/os.cpp 2010-06-21 17:12:21.000000000 -0400
> > ++++ openjdk/hotspot/src/share/vm/runtime/os.cpp 2010-08-06 15:48:48.338599142 -0400
> > +@@ -884,6 +884,9 @@
> > + "%/lib/jsse.jar:"
> > + "%/lib/jce.jar:"
> > + "%/lib/charsets.jar:"
> > ++ "%/lib/netx.jar:"
> > ++ "%/lib/plugin.jar:"
> > ++ "%/lib/rhino.jar:"
> > + "%/classes";
> > + char* sysclasspath = format_boot_path(classpath_format, home, home_len, fileSep, pathSep);
> > + if (sysclasspath == NULL) return false;
>
>
> --
> Andrew :)
>
> Free Java Software Engineer
> Red Hat, Inc. (http://www.redhat.com)
>
> Support Free Java!
> Contribute to GNU Classpath and the OpenJDK
> http://www.gnu.org/software/classpath
> http://openjdk.java.net
> PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
> Fingerprint = F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
More information about the distro-pkg-dev
mailing list