From a2511bf8b21be5b6b9b471917d0175fbe8231f77 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 18 Oct 2023 20:53:59 -0400 Subject: [PATCH] configure.ac: check for the fontforge program We'll need this to convert our sfd source files to woff2 webfonts. --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.ac b/configure.ac index b9b35c7..776c2b4 100644 --- a/configure.ac +++ b/configure.ac @@ -11,6 +11,12 @@ AC_PATH_PROG( [AC_MSG_ERROR([base64 program not found])] ) +AC_PATH_PROG( + [FONTFORGE], + [fontforge], + [AC_MSG_ERROR([fontforge program not found])] +) + AC_PATH_PROG( [SCOUR], [scour], -- 2.44.2