Hi all.

The DRLVM build is broken for the last two days because of the absence
of org/apache/xml/serializer/SerializerTrace in the ant classpath.
I've open the JIRA issue HARMONY-795 about this. The problem is that
this class was in serializer.jar that was removed after this commit.
And this class  is absent in xalan.jar (whicj DRLVM build takes) and
present in classlib xalan.jar. Xalan's (in DRLVM and classlib) are
taken from the different places.
This issue was not mentioned till now I think, because a lot of people
use their own xalan (with serializer), just stored in ant/lib. So
there are no errors when building such way.

I think that the better soltion is to use the classlib xalan.jar
unstead the old one in DRLVM build.

Thanks.

--
Nataly Naumova,
Intel Middleware Products Division


On 7/5/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Author: hindessm
Date: Wed Jul  5 10:31:18 2006
New Revision: 419293

URL: http://svn.apache.org/viewvc?rev=419293&view=rev
Log:
Removing a couple of references to things removed by "[#HARMONY-753] DRLVM
build cleanup: remove some of classlib tasks".

Modified:
   incubator/harmony/enhanced/drlvm/trunk/build/build.bat
   incubator/harmony/enhanced/drlvm/trunk/build/build.sh
   incubator/harmony/enhanced/drlvm/trunk/build/make/lnx.properties
   incubator/harmony/enhanced/drlvm/trunk/build/make/setup.xml
   incubator/harmony/enhanced/drlvm/trunk/build/make/win.properties

Modified: incubator/harmony/enhanced/drlvm/trunk/build/build.bat
URL: 
http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/build.bat?rev=419293&r1=419292&r2=419293&view=diff
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/build/build.bat (original)
+++ incubator/harmony/enhanced/drlvm/trunk/build/build.bat Wed Jul  5 10:31:18 
2006
@@ -126,7 +126,6 @@
 SET CLASSPATH=%CLASSPATH%;.\make\tmp\jdtCompilerAdapter.jar
 SET CLASSPATH=%CLASSPATH%;.\make\tmp\junit.jar
 SET CLASSPATH=%CLASSPATH%;.\make\tmp\xalan.jar
-SET CLASSPATH=%CLASSPATH%;.\make\tmp\serializer.jar

 SET CLASSPATH=%CD%\make\tmp\cpptasks\patched.classes;%CLASSPATH%
 SET CLASSPATH=.\make\tmp\ant-contrib.jar;%CLASSPATH%

Modified: incubator/harmony/enhanced/drlvm/trunk/build/build.sh
URL: 
http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/build.sh?rev=419293&r1=419292&r2=419293&view=diff
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/build/build.sh (original)
+++ incubator/harmony/enhanced/drlvm/trunk/build/build.sh Wed Jul  5 10:31:18 
2006
@@ -77,7 +77,6 @@
 CLASSPATH=$CLASSPATH:`pwd`/make/tmp/jdtCompilerAdapter.jar
 CLASSPATH=$CLASSPATH:`pwd`/make/tmp/junit.jar
 CLASSPATH=$CLASSPATH:`pwd`/make/tmp/xalan.jar
-CLASSPATH=$CLASSPATH:`pwd`/make/tmp/serializer.jar
 CLASSPATH=`pwd`/make/tmp/cpptasks/patched.classes:$CLASSPATH
 CLASSPATH=`pwd`/make/tmp/ant-contrib.jar:$CLASSPATH
 export CLASSPATH

Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/lnx.properties
URL: 
http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/lnx.properties?rev=419293&r1=419292&r2=419293&view=diff
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/build/make/lnx.properties (original)
+++ incubator/harmony/enhanced/drlvm/trunk/build/make/lnx.properties Wed Jul  5 
10:31:18 2006
@@ -78,15 +78,6 @@
 # http://archive.apache.org/dist/xml/xalan-j
 
remote.XALAN.archive=http://www.reverse.net/pub/apache/xml/xalan-j/xalan-j_2_7_0-bin.zip

-# BouncyCastle Crypto API
-# http://www.bouncycastle.org/download/bcprov-jdk14-129.jar
-remote.BCPROV.archive=http://www.bouncycastle.org/download/bcprov-jdk14-129.jar
-remote.BCPROV.archive.type=asis
-
-# Apache common resolver xml utils
-# http://www.reverse.net/pub/apache/xml/commons/xml-commons-resolver-1.1.zip
-remote.RESOLVER.archive=http://www.reverse.net/pub/apache/xml/commons/xml-commons-resolver-1.1.zip
-
 # Location for VM sources (can be handy if building different versions of VM)
 VM_HOME=../../vm
 PATCHES_HOME=../patches

Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/setup.xml
URL: 
http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/setup.xml?rev=419293&r1=419292&r2=419293&view=diff
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/build/make/setup.xml (original)
+++ incubator/harmony/enhanced/drlvm/trunk/build/make/setup.xml Wed Jul  5 
10:31:18 2006
@@ -165,19 +165,6 @@

        <propertyregex property="build.XALAN.path" input="${if.XALAN.exist}" 
regexp="(.*)/${XALAN.check.file}" select="\1" />
        <copy file="${build.XALAN.path}/xalan.jar" todir="tmp" />
-        <fail>
-            <condition>
-                <not>
-                    <available file="${build.XALAN.path}/serializer.jar" />
-                </not>
-            </condition>Error:
-* Your XALAN_HOME: ${build.XALAN.path} doesn't contains serializer.jar.
-* Use default settings in the ${resources.properties.file} file
-* to download the correct archive
-*
-* See README for details.
-        </fail>
-        <copy file="${build.XALAN.path}/serializer.jar" todir="tmp" />

        <propertyregex property="build.CPPTASKS.path" input="${if.CPPTASKS.exist}" 
regexp="(.*)/${CPPTASKS.check.file}" select="\1" />
        <copy file="${build.CPPTASKS.path}/cpptasks.jar" todir="tmp" />

Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/win.properties
URL: 
http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/win.properties?rev=419293&r1=419292&r2=419293&view=diff
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/build/make/win.properties (original)
+++ incubator/harmony/enhanced/drlvm/trunk/build/make/win.properties Wed Jul  5 
10:31:18 2006
@@ -79,15 +79,6 @@
 # http://archive.apache.org/dist/xml/xalan-j
 
remote.XALAN.archive=http://www.reverse.net/pub/apache/xml/xalan-j/xalan-j_2_7_0-bin.zip

-## BoundCastle Crypto API
-# http://www.bouncycastle.org/download/bcprov-jdk14-129.jar
-remote.BCPROV.archive=http://www.bouncycastle.org/download/bcprov-jdk14-129.jar
-remote.BCPROV.archive.type=asis
-
-# Apache common resolver xml utils
-#
-remote.RESOLVER.archive=http://www.reverse.net/pub/apache/xml/commons/xml-commons-resolver-1.1.zip
-
 VM_HOME=..\..\vm
 PATCHES_HOME=../patches





---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to