You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2002/07/07 18:23:13 UTC

DO NOT REPLY [Bug 10531] New: - Allow clean build of Coyote from CVS

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10531>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10531

Allow clean build of Coyote from CVS

           Summary: Allow clean build of Coyote from CVS
           Product: Tomcat 4
           Version: 4.0.4 Final
          Platform: All
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Connector:Coyote HTTP/1.1
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: sms@lateral.net


The CVS version of the coyote build.xml file does not include a reference to
Tomcat's servlet.jar file, causing a clean build from CVS to fail. This patch
adds the reference. This on a CVS version from about 1st July, 2002.

Can't see a way to attach the patch itself, so pasting into the bug report :)



--- jakarta-tomcat-connectors.orig/coyote/build.xml     Mon Jun 24 20:32:39 2002
+++ jakarta-tomcat-connectors/coyote/build.xml  Wed Jul  3 22:28:02 2002
@@ -28,7 +28,7 @@
   <!-- The locations of necessary jar files -->
   <property name="tomcat-util.jar"  value="../util/build/lib/tomcat-util.jar"/>
   <property name="junit.jar"        value="${junit.home}/junit.jar"/>
-
+  <property name="servlet.jar"      value="${catalina.home}/common/lib/servlet.jar"

 <!-- ========== Component Declarations ==================================== -->

@@ -76,6 +76,7 @@
     <pathelement location="${build.home}/classes"/>
     <pathelement location="../util/build/classes"/>
     <pathelement location="${tomcat-util.jar}"/>
+    <pathelement location="${servlet.jar}"/>
     <pathelement location="${catalina.home}/server/lib/catalina.jar"/>
     <pathelement location="${catalina.home}/common/lib/servlet.jar"/>
   </path>
@@ -97,6 +98,7 @@
     <pathelement location="${build.home}/classes"/>
     <pathelement location="${build.home}/tests"/>
     <pathelement location="${tomcat-util.jar}"/>
+    <pathelement location="${servlet.jar}"/>
     <pathelement location="${junit.jar}"/>
   </path>

@@ -280,4 +282,4 @@
   </target>


-</project>
\ No newline at end of file
+</project>

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>