1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-29 04:15:16 +02:00
openwrt-packages/net/privoxy/patches/102-configure-Fix-disable-pcre2.patch
Christian Marangi a2d801cdf3
privoxy: backport and move to PCRE2 library
Backport required patch for PCRE2 support and move to PCRE2 library as
PCRE is now EOL and won't receive any security updates anymore.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
2023-10-29 17:12:30 +01:00

31 lines
945 B
Diff

From 7fb978c74a8a46bd105d9f0ced92a4be0c9647e6 Mon Sep 17 00:00:00 2001
From: Fabian Keil <fk@fabiankeil.de>
Date: Sun, 27 Aug 2023 12:13:48 +0200
Subject: [PATCH] configure: Fix --disable-pcre2
Previously it would result in neither pcre library being detected:
checking for getnameinfo... (cached) yes
configure: WARNING: Ignoring pcre2 even if it's available
test: =: unexpected operator
Enabling support for client-specific tags.
checking for zlibVersion in -lz... (cached) yes
Enabling compression support.
test: =: unexpected operator
test: =: unexpected operator
configure: error: Detected neither pcre2 nor pcre library.
---
configure.in | 1 +
1 file changed, 1 insertion(+)
--- a/configure.in
+++ b/configure.in
@@ -872,6 +872,7 @@ if test $enableval2 = yes; then
else
AC_MSG_WARN([Ignoring pcre2 even if it's available])
try_pcre2=no
+ have_pcre2=no
fi
if test $try_pcre2 != no; then