You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2006/06/18 14:19:02 UTC

svn commit: r415124 - in /incubator/harmony/enhanced/classlib/trunk: depends/files/bootclasspath.properties make/build.xml

Author: hindessm
Date: Sun Jun 18 05:19:01 2006
New Revision: 415124

URL: http://svn.apache.org/viewvc?rev=415124&view=rev
Log:
Allow awt and swing to be built with "-Dwith.awt.swing=true".

Modified:
    incubator/harmony/enhanced/classlib/trunk/depends/files/bootclasspath.properties
    incubator/harmony/enhanced/classlib/trunk/make/build.xml

Modified: incubator/harmony/enhanced/classlib/trunk/depends/files/bootclasspath.properties
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/depends/files/bootclasspath.properties?rev=415124&r1=415123&r2=415124&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/depends/files/bootclasspath.properties (original)
+++ incubator/harmony/enhanced/classlib/trunk/depends/files/bootclasspath.properties Sun Jun 18 05:19:01 2006
@@ -176,3 +176,6 @@
 # The following JARs are from mx4j.sf.net
 bootclasspath.38=mx4j_3.0.1/mx4j.jar
 bootclasspath.39=mx4j_3.0.1/mx4j-remote.jar
+
+# Dependencies for awt and swing
+bootclasspath.40=misc.jar

Modified: incubator/harmony/enhanced/classlib/trunk/make/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/make/build.xml?rev=415124&r1=415123&r2=415124&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/build.xml Sun Jun 18 05:19:01 2006
@@ -44,6 +44,14 @@
 ========================================
 </echo>
         <ant antfile="native-src/build.xml" inheritall="false" target="build"/>
+        <antcall target="build-awt-swing" />
+    </target>
+ 
+    <target name="build-awt-swing" if="with.awt.swing">
+        <delete file="deploy/jdk/jre/lib/boot/awt.jar" /> 
+        <ant antfile="modules/awt_swing_contribution/modules/misc/make/build.xml" inheritall="false" />
+        <ant antfile="modules/awt_swing_contribution/modules/awt/make/build.xml" inheritall="false" />
+        <ant antfile="modules/awt_swing_contribution/modules/swing/make/build.xml" inheritall="false" />
     </target>
 
     <target name="test">