From 86189bd93bafcd2c7592efbcc061e314692fc571 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 12 Apr 2021 01:40:00 +0200 Subject: [PATCH] Ports: Link libarchive against pcre because the system's libregex doesn't support re_nsub --- Ports/libarchive/package.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Ports/libarchive/package.sh b/Ports/libarchive/package.sh index 17e3c4303dc..bc29cfe1203 100755 --- a/Ports/libarchive/package.sh +++ b/Ports/libarchive/package.sh @@ -5,7 +5,9 @@ useconfigure=true configopts="--without-xml2" files="https://libarchive.org/downloads/libarchive-${version}.tar.gz libarchive-${version}.tar.gz https://libarchive.org/downloads/libarchive-${version}.tar.gz.asc libarchive-${version}.tar.gz.asc" -depends=zlib +depends="zlib pcre" auth_type="sig" auth_import_key="CB55788360B992FA0885C878F040F7196BA99AF4" auth_opts="libarchive-${version}.tar.gz.asc libarchive-${version}.tar.gz" + +export ac_cv_header_regex_h=no