summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2014-04-18 14:02:59 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-28 18:17:04 +0200
commit5bc4dd3c3bac9c67851a60ac2ec11f03b299bc37 (patch)
treea6b585e0c31ca9ac7a69c56961a13511945eab4c
parent5f0fb6f114bb907b7122c265ca120bca26dd60d5 (diff)
Bump the minimum required PCRE version to 8.31
This allows us to use JIT also for partial matching. Change-Id: I3963a03e769c61ab68d28c617cbeee2bc49c8f9b Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
-rw-r--r--config.tests/unix/pcre/pcre.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.tests/unix/pcre/pcre.cpp b/config.tests/unix/pcre/pcre.cpp
index 9c765715d3..bb13106c1e 100644
--- a/config.tests/unix/pcre/pcre.cpp
+++ b/config.tests/unix/pcre/pcre.cpp
@@ -41,7 +41,7 @@
#include <pcre.h>
-#if (PCRE_MAJOR < 8) || ((PCRE_MAJOR == 8) && (PCRE_MINOR < 30))
+#if (PCRE_MAJOR < 8) || ((PCRE_MAJOR == 8) && (PCRE_MINOR < 31))
#error This PCRE version is not supported
#endif