billbarker 02/03/11 22:15:45 Modified: http11 build.xml Log: Add copy for the Tomcat 3.3 jar. Note: With the current build files, the tomcat33 jar will still be created even if you don't have Tomcat 3.3 installed (it just won't be functional). This means that the copy is still safe. Revision Changes Path 1.6 +5 -1 jakarta-tomcat-connectors/http11/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/http11/build.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- build.xml 12 Mar 2002 04:34:56 -0000 1.5 +++ build.xml 12 Mar 2002 06:15:45 -0000 1.6 @@ -3,7 +3,7 @@ <!-- "Coyote" connector framework for Jakarta Tomcat - $Id: build.xml,v 1.5 2002/03/12 04:34:56 billbarker Exp $ + $Id: build.xml,v 1.6 2002/03/12 06:15:45 billbarker Exp $ --> @@ -28,6 +28,8 @@ <!-- The locations of necessary jar files --> <property name="tomcat-util.jar" value="../util/build/lib/tomcat-util.jar"/> <property name="tomcat-coyote.jar" value="../coyote/build/lib/tomcat-coyote.jar"/> + <property name="tomcat33-coyote.jar" + value="../coyote/build/lib/tomcat33-coyote.jar"/> <property name="junit.jar" value="${junit.home}/junit.jar"/> @@ -166,6 +168,8 @@ tofile="${build.home}/lib/tomcat-util.jar" /> <copy file="${tomcat-coyote.jar}" tofile="${build.home}/lib/tomcat-coyote.jar" /> + <copy file="${tomcat33-coyote.jar}" + tofile="${build.home}/lib/tomcat33-coyote.jar" /> </target>
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>