diff options
author | Rainer Jung <rjung@apache.org> | 2014-07-23 21:01:45 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2014-07-23 21:01:45 +0200 |
commit | 165f9ffcdd09426da19a57e1d8566452e8731462 (patch) | |
tree | acd7158bff2799783555d9fbe6e2dcfe8effbf4c /configure.in | |
parent | Clarify comment. (diff) | |
download | apache2-165f9ffcdd09426da19a57e1d8566452e8731462.tar.xz apache2-165f9ffcdd09426da19a57e1d8566452e8731462.zip |
Check for correct minimum PCRE version in configure,
do not check in source code.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1612921 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index e0d1094e3d..c28d5311b9 100644 --- a/configure.in +++ b/configure.in @@ -236,7 +236,9 @@ if test "$PCRE_CONFIG" != "false"; then fi case `$PCRE_CONFIG --version` in [[1-5].*]) - AC_MSG_ERROR([Need at least pcre version 6.0]) + AC_MSG_ERROR([Need at least pcre version 6.7]) + [6.[0-6]*]) + AC_MSG_ERROR([Need at least pcre version 6.7]) ;; esac AC_MSG_NOTICE([Using external PCRE library from $PCRE_CONFIG]) |