From: Matthias FRANCK Date: Mon, 26 Aug 2024 19:54:23 +0000 (+0200) Subject: libarchive: disable linking with pcre2 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=9cd39fbf89c51e83e9239ca0331a72c012a615e8;p=openwrt-packages.git libarchive: disable linking with pcre2 Looks like libarchive v3.7.3 adds support for pcre2 (https://github.com/libarchive/libarchive/commit/d1231a7ea7df4db6ddba73f06df67dbab0174a5c). Because of this, the following build error is observed (in the case pcre2 is compiled before libarchive): Package libarchive is missing dependencies for the following libraries: libpcre2-8.so.0 libpcre2-posix.so.3 So let's disable linking with pcre2, just like linking with pcre was disabled before. Signed-off-by: Matthias FRANCK --- diff --git a/libs/libarchive/Makefile b/libs/libarchive/Makefile index def75f732..a0a82a08d 100644 --- a/libs/libarchive/Makefile +++ b/libs/libarchive/Makefile @@ -78,6 +78,7 @@ CMAKE_OPTIONS += \ -DENABLE_ZSTD=OFF \ -DENABLE_LIBXML2=OFF \ -DENABLE_PCREPOSIX=OFF \ + -DENABLE_PCRE2POSIX=OFF \ -DENABLE_LibGCC=OFF \ -DENABLE_CNG=OFF \ \