From 25b23978e18d5474242242573d942cb5eac17875 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 2 Jul 2018 16:12:57 +0200 Subject: [PATCH] regex: Require PCRE 8.31 PCRE >= 8.31 is required for PCRE_INFO_MAXLOOKBEHIND usage, introduced in commit 6fbb1463429748bed7ab6593779430ee1c0664f5 (2013/07). regex can also make use of the PCRE_NO_AUTO_POSSESS feature from PCRE 8.34, but this is optional and properly guarded already. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 06fac48af..91b3afa20 100644 --- a/configure.ac +++ b/configure.ac @@ -2363,7 +2363,7 @@ dnl ********************* dnl *** GRegex checks *** dnl ********************* -PCRE_REQUIRED_VERSION=8.13 +PCRE_REQUIRED_VERSION=8.31 # Check if we should use the internal or the system-supplied pcre AC_ARG_WITH(pcre,