You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ml...@apache.org on 2006/11/28 12:43:54 UTC

svn commit: r480003 - /harmony/enhanced/classlib/trunk/make/build-java.xml

Author: mloenko
Date: Tue Nov 28 03:43:53 2006
New Revision: 480003

URL: http://svn.apache.org/viewvc?view=rev&rev=480003
Log:
roll back r479762. Need to figure out why it breaks the build

Modified:
    harmony/enhanced/classlib/trunk/make/build-java.xml

Modified: harmony/enhanced/classlib/trunk/make/build-java.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/build-java.xml?view=diff&rev=480003&r1=480002&r2=480003
==============================================================================
--- harmony/enhanced/classlib/trunk/make/build-java.xml (original)
+++ harmony/enhanced/classlib/trunk/make/build-java.xml Tue Nov 28 03:43:53 2006
@@ -118,12 +118,13 @@
         </fail>
         <mkdir dir="${build.output}" />
 
-        <javac compiler="${hy.javac.compiler}"
+        <javac fork="yes" 
+               compiler="${hy.javac.compiler}"
+               memoryMaximumSize="${hy.javac.maxmem}"
                destdir="${build.output}"
                source="${hy.javac.source}" 
                target="${hy.javac.target}"
-               debug="${hy.javac.debug}"
-               includeAntRuntime="no">
+               debug="${hy.javac.debug}">
             
             <compilerarg line="${build.compilerarg}" />
             
@@ -171,15 +172,6 @@
                     <include name="**/*.jar" />
                 </fileset>
             </classpath>
-
-            <!-- We need to set some BCP to avoid the compiler picking
-                 up the JRE's JARs -->
-            <bootclasspath>
-                <fileset dir="${depends.jars}">
-                    <!-- FIXME: picked mx4j arbitrarily, needs to be non-empty set -->
-                    <include name="**/mx4j.jar" />
-                </fileset>
-            </bootclasspath>
         </javac>
 
         <call-modules target="build" />