From c0a4a0e12a20a8969b345354b3f2930818afe36e Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 25 Oct 2023 17:00:26 -0400 Subject: [PATCH] configure.ac: check for the "xsltproc" program We'll need this to process our new svgclean.xsl stylesheet that cleans up the tableau. --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- 2.44.2