curcuru 01/04/25 14:11:34
Modified: java build.xml
Log:
Change xsltc.compile java tasks to fork=no for Win98 compatibility
Revision Changes Path
1.94 +4 -4 xml-xalan/java/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/java/build.xml,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- build.xml 2001/04/24 16:02:26 1.93
+++ build.xml 2001/04/25 21:11:31 1.94
@@ -48,7 +48,7 @@
- Much of this file stolen from Stefano's xml-xerces build.xml
- $Id: build.xml,v 1.93 2001/04/24 16:02:26 curcuru Exp $
+ $Id: build.xml,v 1.94 2001/04/25 21:11:31 curcuru Exp $
==================================================================== -->
@@ -221,7 +221,7 @@
<!-- Compile XPath engine and some common utilities -->
<javac srcdir="${src.dir}"
destdir="${build.classes}"
- includes="org/apache/xml/**/*.java,org/apache/xpath/**/*.java"
+ includes="org/apache/xml/**/*.java,${xpath.reldir}/**/*.java"
debug="${debug}"/>
<!-- Compile Xalan main engine (but not xsltc package yet) -->
<javac srcdir="${src.dir}"
@@ -275,7 +275,7 @@
last one generates XPathLexer.java. The lexiographical analyser
has to be generated after sym.java, so order is important. -->
<echo message="java_cup preparsing"/>
- <java fork="yes" failonerror="true"
classname="org.apache.xalan.xsltc.util.JavaCupRedirect" >
+ <java fork="no" failonerror="true"
classname="org.apache.xalan.xsltc.util.JavaCupRedirect" >
<classpath refid="xsltc.class.path" />
<!-- We're using JavaCupRedirect to call the java_cup application -->
<arg line="-parser XPathParser -expect 0 -stdin
${src.dir}/${xsltc.reldir}/compiler/xpath.cup"/>
@@ -285,7 +285,7 @@
<move file="sym.java"
tofile="${src.dir}/${xsltc.reldir}/compiler/sym.java"/>
<echo message="JLex preparsing"/>
- <java fork="yes" failonerror="true" classname="JLex.Main" >
+ <java fork="no" failonerror="true" classname="JLex.Main" >
<classpath refid="xsltc.class.path" />
<arg line="-static ${src.dir}/${xsltc.reldir}/compiler/xpath.lex"/>
</java>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]