using pcre2.
Follow up to r1773454.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1814662 13f79535-47bb-0310-9956-
ffa450edef68
-*- coding: utf-8 -*-
-Changes with Apache 2.5.0-alpha
+Changes with Apache 2.5.1
+
+ *) core: fix pcre feature detection in configure when using pcre2. [Rainer Jung]
-Changes with Apache 2.5.0
+Changes with Apache 2.5.0-alpha
*) mod_macro: fix usability of globally defined macros in .htaccess files.
PR 57525. [Jose Kahan <jose w3.org>, Yann Ylavic]
CPPFLAGS="$CPPFLAGS $PCRE_INCLUDES"
AC_EGREP_CPP(yes,
[
+#ifdef HAVE_PCRE2
+yes
+#else
#include <pcre.h>
#ifdef PCRE_DUPNAMES
yes
#endif
+#endif
],pcre_have_dupnames=yes,pcre_have_dupnames=no)
if test "$pcre_have_dupnames" != "yes"; then
AC_MSG_ERROR([pcre version does not support PCRE_DUPNAMES])