2010/1/4 <rj...@apache.org>: > 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 Best regards, Konstantin Kolinko --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org