You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by lu...@apache.org on 2003/06/10 02:49:30 UTC

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

luehe       2003/06/09 17:49:30

  Modified:    util     build.xml
  Log:
  Changed how availability of JSSE is determined: JSSE comes standard
  with JDK 1.4, without having to set the "jsse.home" or "jsse.jar"
  properties
  
  Revision  Changes    Path
  1.24      +1 -1      jakarta-tomcat-connectors/util/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/util/build.xml,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- build.xml	5 May 2003 14:29:19 -0000	1.23
  +++ build.xml	10 Jun 2003 00:49:30 -0000	1.24
  @@ -35,7 +35,7 @@
       </path>
   
       <target name="detect">
  -        <available property="jsse.present" file="${jsse.jar}"/>
  +        <available property="jsse.present" classname="javax.net.ssl.SSLSocket"/>
           <available property="jmx.present" file="${jmx.jar}"/>
           <available property="puretls.present" file="${puretls.jar}"/>
           <available property="commons-logging.present" file="${commons-logging.jar}"/>
  
  
  

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