patrickl    2002/08/01 07:30:36

  Modified:    .        BUILDING.txt build.properties.default build.xml
  Log:
  Require use of Xerces 2.0.1 since I found that it does support XML schemas without 
throwing a StockOverflow exception. Previously, I thought that only the HEAD branch of 
Xerces 2 fixed this problem.
  
  Revision  Changes    Path
  1.9       +12 -5     jakarta-tomcat-5/BUILDING.txt
  
  Index: BUILDING.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/BUILDING.txt,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- BUILDING.txt      1 Aug 2002 05:52:59 -0000       1.8
  +++ BUILDING.txt      1 Aug 2002 14:30:36 -0000       1.9
  @@ -84,16 +84,23 @@
   * This is optional with JDK 1.3 or later.
   
   
  -(4) Download and Install the Xerces 2 nightly build July 31, 2002 or Higher
  -    Distribution
  +(4) Download and Install the Xerces 2 Distribution
   
  -* Download the xercesImpl.jar and xmlParserAPIs.jar files from:
  +* Download a binary distribution of version 2.0.1 from:
   
  -  http://gump.covalent.net/jars/latest/xml-xerces2/
  +  http://xml.apache.org/dist/xerces-j/old_xerces2
   
  -* Place the downloaded files in a convenient location so that the
  +  On a Windows platform, you will need:
  +    Xerces-J-bin.2.0.1.zip
  +
  +  On a Unix platform, you will need:
  +    Xerces-J-bin.2.0.1.tar.gz
  +
  +* Unpack the binary distribution into a convenient location so that the
     distribution resides in its own directory (conventionally named
     "xerces-x_y_z").
  +
  +* This is optional with JDK 1.4 or later.
   
   
   (5) Download and Install Subproject Source Code
  
  
  
  1.13      +4 -7      jakarta-tomcat-5/build.properties.default
  
  Index: build.properties.default
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/build.properties.default,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.properties.default  1 Aug 2002 05:52:59 -0000       1.12
  +++ build.properties.default  1 Aug 2002 14:30:36 -0000       1.13
  @@ -102,15 +102,12 @@
   
regexp.loc=http://jakarta.apache.org/builds/jakarta-regexp/release/v1.2/jakarta-regexp-1.2.tar.gz
   
   
  -# ----- Xerces XML Parser, version 2 nightly build July 31, 2002 or later -----
  -#xerces.home=${base.path}/xerces-2_0_2
  -xerces.home=${base.path}/xerces-2-latest
  +# ----- Xerces XML Parser, version 2_0_1 -----
  +xerces.home=${base.path}/xerces-2_0_1
   xerces.lib=${xerces.home}
   xercesImpl.jar=${xerces.lib}/xercesImpl.jar
   xmlParserAPIs.jar=${xerces.lib}/xmlParserAPIs.jar
  -#xerces.loc=http://xml.apache.org/dist/xerces-j/Xerces-J-bin.2.0.2.tar.gz
  -xercesImpl.loc=http://gump.covalent.net/jars/latest/xml-xerces2/xercesImpl.jar
  -xmlParserAPIs.loc=http://gump.covalent.net/jars/latest/xml-xerces2/xmlParserAPIs.jar
  +xerces.loc=http://xml.apache.org/dist/xerces-j/old_xerces2/Xerces-J-bin.2.0.1.tar.gz
   
   
   # --------------------------------------------------
  
  
  
  1.15      +1 -18     jakarta-tomcat-5/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/build.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- build.xml 1 Aug 2002 05:52:59 -0000       1.14
  +++ build.xml 1 Aug 2002 14:30:36 -0000       1.15
  @@ -517,27 +517,10 @@
         <param name="destfile" value="${regexp.jar}"/>
       </antcall>
   
  -    <!--
  -      Can't download a released version of Xerces since they have a XML
  -      Schema bug
  -    -->
  -    <!--
       <antcall target="downloadgz">
  +      <!-- xerces2 brings 2 files, test for one of them -->
         <param name="sourcefile" value="${xerces.loc}"/>
         <param name="destfile" value="${xmlParserAPIs.jar}"/>
  -    </antcall>
  -    -->
  -
  -    <!-- latest xerces2 requires download of 2 separate jars -->
  -    <antcall target="downloadfile">
  -      <param name="sourcefile" value="${xercesImpl.loc}"/>
  -      <param name="destfile" value="${xercesImpl.jar}"/>
  -      <param name="destdir" value="${xerces.home}"/>
  -    </antcall>
  -    <antcall target="downloadfile">
  -      <param name="sourcefile" value="${xmlParserAPIs.loc}"/>
  -      <param name="destfile" value="${xmlParserAPIs.jar}"/>
  -      <param name="destdir" value="${xerces.home}"/>
       </antcall>
   
       <antcall target="cvsbuild">
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to