mirror of
https://github.com/mirror/wget.git
synced 2026-08-22 19:03:27 +08:00
Add support for PCRE2 pattern matching
* configure.ac: Check for libpcre2-8 * src/init.c (choices): Test for HAVE_LIBPCRE2 * src/main.c (main): Set regex compile and match functions * src/options.h: Test for HAVE_LIBPCRE2 * src/utils.c: Include pcre2.h, add functions compile_pcre2_regex() and match_pcre2_regex() * src/utils.h: Declare compile_pcre2_regex() and match_pcre2_regex() Fixes #54677 Reported-by: Noël Köthe
This commit is contained in:
28
configure.ac
28
configure.ac
@@ -715,18 +715,39 @@ AS_IF([test "x$uuid_mode" = x1], [
|
||||
])
|
||||
|
||||
dnl
|
||||
dnl Check for PCRE
|
||||
dnl Check for PCRE2 / PCRE
|
||||
dnl
|
||||
|
||||
AC_ARG_ENABLE(pcre2, AC_HELP_STRING([--disable-pcre2],
|
||||
[Disable PCRE2 style regular expressions]))
|
||||
AC_ARG_ENABLE(pcre, AC_HELP_STRING([--disable-pcre],
|
||||
[Disable PCRE style regular expressions]))
|
||||
|
||||
AS_IF([test "X$enable_pcre" != "Xno"],[
|
||||
AS_IF([test "X$enable_pcre2" != "Xno"],[
|
||||
enable_pcre2=no
|
||||
PKG_CHECK_MODULES([PCRE2], libpcre2-8, [
|
||||
CFLAGS="$PCRE2_CFLAGS $CFLAGS"
|
||||
LIBS="$PCRE2_LIBS $LIBS"
|
||||
AC_DEFINE([HAVE_LIBPCRE2], [1], [Define if libpcre2 is available.])
|
||||
enable_pcre2=yes
|
||||
], [
|
||||
AC_CHECK_HEADER(pcre2.h, [
|
||||
AC_CHECK_LIB(pcre2-8, pcre2_compile_8, [
|
||||
LIBS="${LIBS} -lpcre2-8"
|
||||
AC_DEFINE([HAVE_LIBPCRE2], 1, [Define if libpcre2 is available.])
|
||||
enable_pcre2=yes
|
||||
])
|
||||
])
|
||||
])
|
||||
])
|
||||
|
||||
AS_IF([test "X$enable_pcre" != "Xno" && test "X$enable_pcre2" != "Xyes"],[
|
||||
PKG_CHECK_MODULES([PCRE], libpcre, [
|
||||
CFLAGS="$PCRE_CFLAGS $CFLAGS"
|
||||
AC_CHECK_HEADER(pcre.h, [
|
||||
LIBS="$PCRE_LIBS $LIBS"
|
||||
AC_DEFINE([HAVE_LIBPCRE], [1], [Define if libpcre is available.])
|
||||
enable_pcre=yes
|
||||
])
|
||||
], [
|
||||
AC_CHECK_HEADER(pcre.h, [
|
||||
@@ -738,6 +759,8 @@ AS_IF([test "X$enable_pcre" != "Xno"],[
|
||||
])
|
||||
])
|
||||
|
||||
AS_IF([test "X$enable_pcre2" = Xyes], [PCRE_INFO="yes, via libpcre2"], [test "X$enable_pcre" = Xyes], [PCRE_INFO="yes, via libpcre"], [PCRE_INFO=no])
|
||||
|
||||
dnl
|
||||
dnl Check for libcares (resolver library)
|
||||
dnl
|
||||
@@ -817,6 +840,7 @@ AC_MSG_NOTICE([Summary of build options:
|
||||
SSL: $with_ssl
|
||||
Zlib: $with_zlib
|
||||
PSL: $with_libpsl
|
||||
PCRE: $PCRE_INFO
|
||||
Digest: $ENABLE_DIGEST
|
||||
NTLM: $ENABLE_NTLM
|
||||
OPIE: $ENABLE_OPIE
|
||||
|
||||
Reference in New Issue
Block a user