You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by co...@apache.org on 2003/05/03 01:29:00 UTC

cvs commit: jakarta-tomcat-connectors/coyote build.xml

costin      2003/05/02 16:29:00

  Modified:    coyote   build.xml
  Log:
  - "normal" order ( there is no point of having per user config if it's last )
  - add j-t-c default properties ( used to build j-t-c standalone )
  - tomcat3.3 and tomcat4.1 are treated as dependencies. Override in build.properties if
  you have an existing one.
  - don't try to compile tomcat5.
  
  The deps on 3.3 and 4.1 are required until we move the specific code in 3.3/4.1
  ( if we ever do that ).
  
  Revision  Changes    Path
  1.25      +6 -5      jakarta-tomcat-connectors/coyote/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/coyote/build.xml,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- build.xml	19 Apr 2003 20:47:49 -0000	1.24
  +++ build.xml	2 May 2003 23:28:59 -0000	1.25
  @@ -10,9 +10,10 @@
   <!-- ========== Initialize Properties ===================================== -->
   
   
  +  <property file="${user.home}/build.properties"/>   <!-- User local        -->
     <property file="build.properties"/>                <!-- Component local   -->
     <property file="../build.properties"/>             <!-- Commons local     -->
  -  <property file="${user.home}/build.properties"/>   <!-- User local        -->
  +  <property file="../build.properties.default"/>             <!-- Commons local     -->
   
   
   <!-- ========== External Dependencies ===================================== -->
  @@ -74,9 +75,9 @@
   
       <!-- default locations -->
       <property name="tomcat33.home" 
  -	      location="../../jakarta-tomcat/build/tomcat" />
  +	      location="${base.path}/jakarta-tomcat-3.3" />
       <property name="catalina.home" 
  -	      location="../../jakarta-tomcat-4.0/build" />
  +	      location="${base.path}/jakarta-tomcat-4.1.24" />
   
       <property name="servlet.jar"
                 value="${catalina.home}/common/lib/servlet.jar" />
  @@ -271,7 +272,7 @@
     </target>
   
     <target name="compile" 
  -   depends="static,report,compile.shared,compile.tomcat5,compile.tomcat4,compile.tomcat33"
  +   depends="static,report,compile.shared,compile.tomcat4,compile.tomcat33"
      description="Compile Coyote and its Adapters">
       <jar    jarfile="${build.home}/lib/tomcat-${component.name}.jar"
               index="true"
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org