On 01/04/2010 08:50 PM, Konstantin Kolinko wrote:
> 2010/1/4 <[email protected]>:
>> Author: rjung
>> Date: Mon Jan 4 16:58:04 2010
>> New Revision: 895700
>>
>> URL: http://svn.apache.org/viewvc?rev=895700&view=rev
>> Log:
>> Fix apr version test i tcnative trunk.
>>
>> Modified:
>> tomcat/native/trunk/native/build/tcnative.m4
>>
>
>> --- tomcat/native/trunk/native/build/tcnative.m4 (original)
>> +++ tomcat/native/trunk/native/build/tcnative.m4 Mon Jan 4 16:58:04 2010
>> @@ -35,8 +35,12 @@
>> if test "${1}" -lt "1"; then
>> AC_MSG_ERROR(You need APR version 1.3.3 or newer installed.)
>> else
>> - if test "${2}" -lt "2"; then
>> + if test "${2}" -lt "3"; then
>> AC_MSG_ERROR(You need APR version 1.3.3 or newer installed.)
>> + else
>> + if test "${2}" -lt "3"; then
>> + AC_MSG_ERROR(You need APR version 1.3.3 or newer installed.)
>> + fi
>> fi
>> fi
>>
>
> I do not understand the above. What is the difference between these checks? :
>> + if test "${2}" -lt "3"; then
>> + if test "${2}" -lt "3"; then
Should be
if test "${2}" -lt "3"; then
if test "${3}" -lt "3"; then
No?
Cheers
Jean-Frederic
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]