summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2019-11-12 09:02:31 +0000
committerJoe Orton <jorton@apache.org>2019-11-12 09:02:31 +0000
commit7994f495995ebc3ba3d1ceaaee0aa3149d0891ac (patch)
tree1ed9b89d8314d5afb13c6b01e654c265508313ad /configure.in
parentdf8ba9b3bca8df454c372b93d7eeac5af0eeb79f (diff)
downloadhttpd-7994f495995ebc3ba3d1ceaaee0aa3149d0891ac.tar.gz
Update APR version requirement to 1.6 or later per rough consensus on
dev@ (see list thread from msgid <20191108094020.GA12979@redhat.com>). * configure.in: Fail with APR < 1.6. * .travis.yml: Build on Bionic by default, only build w/APR 1.5.x for the 2.4.x branch. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1869684 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 6199f6daf7..3974f3327e 100644
--- a/configure.in
+++ b/configure.in
@@ -96,8 +96,8 @@ else
APR_FIND_APR("$srcdir/srclib/apr", "./srclib/apr", 1, 1 2, [
version=`$apr_config --version`
case x${version} in
- x1.[[0-3]].*)
- AC_MSG_WARN([APR version 1.4.0 or later is required, found $version])
+ x1.[[0-5]].*)
+ AC_MSG_WARN([APR version 1.6.0 or later is required, found $version])
apr_acceptable=no
;;
esac