larryi      2002/07/30 12:07:29

  Modified:    .        build.xml
  Log:
  Use j-t-c propety for mx4j.jar location.  Add a message for JMX detection.
  Note that this detection needs to be in sync with the detection in
  jakarta-tomcat-util.
  
  Revision  Changes    Path
  1.185     +6 -2      jakarta-tomcat/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/build.xml,v
  retrieving revision 1.184
  retrieving revision 1.185
  diff -u -r1.184 -r1.185
  --- build.xml 11 Jun 2002 12:13:22 -0000      1.184
  +++ build.xml 30 Jul 2002 19:07:28 -0000      1.185
  @@ -91,7 +91,7 @@
     <property name="jtc.http11.home" location="${jakarta-tomcat-connectors}/http11"/>
     <property name="jtc.http11.lib" location="${jtc.http11.home}/build/lib"/>
   
  -  <property name="jmx.jar" location="../jakarta-tomcat-connectors/lib/mx4j.jar"/>
  +  <property name="jmx.jar" location="${jakarta-tomcat-connectors}/lib/mx4j.jar"/>
   
     <!-- Binaries checked in ( servlet.jar is not likely to change,
         the 2.2 spec is final -->
  @@ -147,6 +147,10 @@
       <echo message="Detected JSSE"/>
     </target>
   
  +  <target name="msg.jmx" if="jmx-present" >
  +    <echo message="Detected JMX"/>
  +  </target>
  +
     <target name="msg.puretls" if="puretls.present">
       <echo message="Detected PureTLS"/>
     </target>
  @@ -164,7 +168,7 @@
     </target>
   
     <target name="init"
  -          
depends="detect,uptodate,msg.jdk12,msg.jsse,msg.puretls,msg.commons-dbcp,msg.jtc,msg.jtc.util"
 >
  +          
depends="detect,uptodate,msg.jdk12,msg.jsse,msg.jmx,msg.puretls,msg.commons-dbcp,msg.jtc,msg.jtc.util"
 >
     </target>
   
     <target name="prepare.jaxp101"  depends="detect" if="jaxp10-present" >
  
  
  

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

Reply via email to