From: Michael Orlitzky Date: Thu, 19 Oct 2023 00:53:59 +0000 (-0400) Subject: configure.ac: check for the fontforge program X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;ds=sidebyside;h=a2511bf8b21be5b6b9b471917d0175fbe8231f77;p=charm-bypass.git configure.ac: check for the fontforge program We'll need this to convert our sfd source files to woff2 webfonts. --- 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],