From aa8e9dad472cbadc96719a8f521768aeeb0913f0 Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Mon, 25 Dec 2023 15:11:04 -0500 Subject: comics: Use libarchive to unpack documents This commit eliminates the use of external commands for opening comic documents, and uses libarchive instead. --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index e25de054..d5830716 100644 --- a/configure.ac +++ b/configure.ac @@ -580,8 +580,11 @@ AC_ARG_ENABLE(comics, [enable_comics=$enableval], [enable_comics=yes]) +COMICS_DEPS="libarchive" if test "x$enable_comics" = "xyes"; then AC_DEFINE([ENABLE_COMICS], [1], [Enable support for comics.]) + PKG_CHECK_MODULES([COMICS], [$COMICS_DEPS]) + AC_SUBST(COMICS_LIBS) fi AM_CONDITIONAL(ENABLE_COMICS, test x$enable_comics = xyes) -- cgit v1.2.1