costin      02/04/10 15:57:47

  Modified:    util     build.xml
  Log:
  Add test and include for commons-logging
  
  Revision  Changes    Path
  1.6       +6 -0      jakarta-tomcat-connectors/util/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/util/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml 8 Apr 2002 02:35:06 -0000       1.5
  +++ build.xml 10 Apr 2002 22:57:47 -0000      1.6
  @@ -16,11 +16,15 @@
       <property name="puretls.lib" location="${puretls.home}/build"/>
       <property name="puretls.jar" location="${puretls.lib}/puretls.jar"/>
       
  +    <property name="commons-logging.jar" value="../lib/commons-logging.jar" />
  +    
       <target name="detect">
           <available property="jsse.present"
                      file="${jsse.jar}"/>
           <available property="puretls.present"
                   file="${puretls.jar}"/>
  +        <available property="commons-logging.present"
  +                file="${commons-logging.jar}"/>
       </target>
   
       <target name="build-prepare" depends="detect">
  @@ -44,7 +48,9 @@
               <classpath location="${jnet.jar}" />
               <classpath location="${jcert.jar}" />
               <classpath location="${puretls.jar}" />
  +            <classpath location="${commons-logging.jar}" />
               <exclude name="**/util/net/JSSE*" unless="jsse.present"/>
  +            <exclude name="**/util/log/CommonLogHandler.java" 
unless="commons-logging.present"/>
               <exclude name="**/util/net/PureTLS*" unless="puretls.present"/>
        </javac>
   
  
  
  

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

Reply via email to