You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cr...@apache.org on 2001/05/23 21:44:31 UTC

cvs commit: jakarta-tomcat-4.0/jasper build.xml

craigmcc    01/05/23 12:44:30

  Modified:    jasper   build.xml
  Log:
  When revising the build procedure, I accidentally broke the copying of our
  special patched jaxp.jar and crimson.jar files to get around the package
  sealing violations.  This fix restores them.
  
  Revision  Changes    Path
  1.19      +9 -1      jakarta-tomcat-4.0/jasper/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/build.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- build.xml	2001/05/22 01:59:05	1.18
  +++ build.xml	2001/05/23 19:44:24	1.19
  @@ -63,14 +63,22 @@
       <!-- Shared Extensions -->
       <!--   Jasper uses the shared servlet.jar provided by Tomcat -->
       <!--   Jasper needs JAXP1.1/SAX2.0 compliant parser -->
  +<!-- Continue to copy our patched version of crimson.jar until unsealed
       <copy file="${parser.jar}"
        tofile="${jasper.build}/lib/${jasper.jaxp.parser.jar}"/>
  -
  +-->
  +    <copy file="../lib/crimson.jar"
  +        tofile="${jasper.build}/lib/crimson.jar"/>
     </target>
   
     <target name="copy-jaxp-jar" if="jaxp.jar.present" >
  +<!-- Continue to copy our patched version of jaxp.jar until unsealed
       <copy file="${jaxp.jar}" tofile="${jasper.build}/lib/jaxp.jar"/>
  +-->
  +    <copy file="../lib/jaxp.jar"
  +        tofile="${jasper.build}/lib/jaxp.jar"/>
     </target>
  +
   
     <!-- ================= BUILD: Compile Server Components ================= -->
     <target name="build-main" depends="build-static">