From: Michael Orlitzky Date: Wed, 25 Oct 2023 21:00:26 +0000 (-0400) Subject: configure.ac: check for the "xsltproc" program X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=c0a4a0e12a20a8969b345354b3f2930818afe36e;p=charm-bypass.git configure.ac: check for the "xsltproc" program We'll need this to process our new svgclean.xsl stylesheet that cleans up the tableau. --- diff --git a/configure.ac b/configure.ac index 4905b74..18411ea 100644 --- a/configure.ac +++ b/configure.ac @@ -23,4 +23,10 @@ AC_PATH_PROG( [AC_MSG_ERROR([scour program not found])] ) +AC_PATH_PROG( + [XSLTPROC], + [xsltproc], + [AC_MSG_ERROR([xsltproc program not found])] +) + AC_OUTPUT