From: Michael Orlitzky Date: Mon, 16 Oct 2023 04:41:37 +0000 (-0400) Subject: configure.ac: check for scour instead of xmllint X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;ds=inline;h=0d4d35d607c3e41d0fcf63a605d3dad1e19db341;p=charm-bypass.git configure.ac: check for scour instead of xmllint I'm about to switch to a more involved SVG pre-processing step using scour, https://github.com/scour-project/scour instead of xmllint. --- diff --git a/configure.ac b/configure.ac index 5b9256c..a1d9c82 100644 --- a/configure.ac +++ b/configure.ac @@ -12,9 +12,9 @@ AC_PATH_PROG( ) AC_PATH_PROG( - [XMLLINT], - [xmllint], - [AC_MSG_ERROR([xmllint program not found])] + [SCOUR], + [scour], + [AC_MSG_ERROR([scour program not found])] ) AC_OUTPUT