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 Modified: tomcat/native/trunk/native/build/tcnative.m4 URL: http://svn.apache.org/viewvc/tomcat/native/trunk/native/build/tcnative.m4?rev=895700&r1=895699&r2=895700&view=diff ============================================================================== --- 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 --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org