2 AC_INIT([charm-bypass],[0.0.1],[michael@orlitzky.com])
3 AC_CONFIG_AUX_DIR([build-aux])
4 AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz tar-ustar])
5 AC_CONFIG_FILES([Makefile])
6 AC_CONFIG_SRCDIR([tableau.svg])
8 AC_PATH_PROG([BASE64], [base64])
10 [test -z "${BASE64}"],
11 [AC_MSG_ERROR([base64 program not found])]
14 AC_PATH_PROG([FONTFORGE], [fontforge])
16 [test -z "${FONTFORGE}"],
17 [AC_MSG_ERROR([fontforge program not found])]
20 AC_PATH_PROG([SCOUR], [scour])
23 [AC_MSG_ERROR([scour program not found])]
26 AC_PATH_PROG([XSLTPROC], [xsltproc])
28 [test -z "${XSLTPROC}"],
29 [AC_MSG_ERROR([xsltproc program not found])]