From d534bb8d93319212b3c083b083189e8e7b414637 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Sun, 11 Dec 2022 13:35:41 -0700 Subject: [PATCH] package/swig: depend on host-pcre2 instead of host-pcre Since the bump of swig to version 4.1.1 in commit 260924e239627cbe1379cfc752939245d53a06e0, host-pcre2 is needed instead of host-pcre. Since is change that was introduced in swig 4.1.0, as stated in https://sourceforge.net/p/swig/news/2022/10/swig-410-released/: Update optional SWIG build dependency for regex support from PCRE to PCRE2 Fixes: http://autobuild.buildroot.net/results/3a70042aad7376bcccf56d639ced93f504f47963 Signed-off-by: James Hilliard Signed-off-by: Thomas Petazzoni --- package/swig/swig.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/swig/swig.mk b/package/swig/swig.mk index d432cab53d..ad585c3f97 100644 --- a/package/swig/swig.mk +++ b/package/swig/swig.mk @@ -7,7 +7,7 @@ SWIG_VERSION_MAJOR = 4.1 SWIG_VERSION = $(SWIG_VERSION_MAJOR).1 SWIG_SITE = http://downloads.sourceforge.net/project/swig/swig/swig-$(SWIG_VERSION) -HOST_SWIG_DEPENDENCIES = host-bison host-pcre +HOST_SWIG_DEPENDENCIES = host-bison host-pcre2 HOST_SWIG_CONF_OPTS = \ --with-pcre \ --disable-ccache \