You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2010/03/02 10:19:47 UTC

svn commit: r917931 - /tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java

Author: mturk
Date: Tue Mar  2 09:19:45 2010
New Revision: 917931

URL: http://svn.apache.org/viewvc?rev=917931&view=rev
Log:
With unsafe reneg, minimum required is 1.2.21 caused by API change

Modified:
    tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java

Modified: tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java?rev=917931&r1=917930&r2=917931&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java (original)
+++ tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java Tue Mar  2 09:19:45 2010
@@ -58,9 +58,9 @@
 
     protected static final int TCN_REQUIRED_MAJOR = 1;
     protected static final int TCN_REQUIRED_MINOR = 1;
-    protected static final int TCN_REQUIRED_PATCH = 17;
+    protected static final int TCN_REQUIRED_PATCH = 21;
     protected static final int TCN_RECOMMENDED_MINOR = 1;
-    protected static final int TCN_RECOMMENDED_PV = 19;
+    protected static final int TCN_RECOMMENDED_PV = 21;
 
 
     // ---------------------------------------------- Properties



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


Re: svn commit: r917931 - /tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java

Posted by Mladen Turk <mt...@apache.org>.
On 03/02/2010 01:17 PM, Remy Maucherat wrote:
> On Tue, 2010-03-02 at 09:19 +0000, mturk@apache.org wrote:
>> Author: mturk
>> Date: Tue Mar  2 09:19:45 2010
>> New Revision: 917931
>>
>> URL: http://svn.apache.org/viewvc?rev=917931&view=rev
>> Log:
>> With unsafe reneg, minimum required is 1.2.21 caused by API change
>
> As long as you don't set the new flag to true, I think it will work with
> old versions.
>

Sure. Think I'll even add UnsatisfiedLinkError around hasOp()
and display the same WARN as when OpenSSL is < 0.9.8m


Cheers
-- 
^TM

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


Re: svn commit: r917931 - /tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java

Posted by Remy Maucherat <re...@apache.org>.
On Tue, 2010-03-02 at 09:19 +0000, mturk@apache.org wrote:
> Author: mturk
> Date: Tue Mar  2 09:19:45 2010
> New Revision: 917931
> 
> URL: http://svn.apache.org/viewvc?rev=917931&view=rev
> Log:
> With unsafe reneg, minimum required is 1.2.21 caused by API change

As long as you don't set the new flag to true, I think it will work with
old versions.

Rémy



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