From b3a1f89611736ecffa6e9b775aa90fac02a2a25e Mon Sep 17 00:00:00 2001 From: Huáng Jùnliàng Date: Fri, 9 Feb 2018 10:11:58 +0800 Subject: configure: bump libarchive requirements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bump libarchive requirement to >= 3.0.0 as we use `archive_write_free` available from 3.0.0 Signed-off-by: Huáng Jùnliàng Signed-off-by: Allan McRae --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 86f5bb6e..e382c50a 100644 --- a/configure.ac +++ b/configure.ac @@ -216,8 +216,8 @@ AC_CHECK_LIB([m], [fabs], , AC_MSG_ERROR([libm is needed to compile pacman!])) # Check for libarchive -PKG_CHECK_MODULES(LIBARCHIVE, [libarchive >= 2.8.0], , - AC_MSG_ERROR([*** libarchive >= 2.8.0 is needed to compile pacman!])) +PKG_CHECK_MODULES(LIBARCHIVE, [libarchive >= 3.0.0], , + AC_MSG_ERROR([*** libarchive >= 3.0.0 is needed to compile pacman!])) # Check for OpenSSL have_openssl=no -- cgit v1.2.3-24-g4f1b