X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=configure.ac;h=8f0f5968886c1624a228163264788e91db8a6e52;hb=HEAD;hp=a1d9c82db8148d0873ed4a4406ccb561ce6567a3;hpb=0d4d35d607c3e41d0fcf63a605d3dad1e19db341;p=charm-bypass.git diff --git a/configure.ac b/configure.ac index a1d9c82..8f0f596 100644 --- a/configure.ac +++ b/configure.ac @@ -3,18 +3,30 @@ AC_INIT([charm-bypass],[0.0.1],[michael@orlitzky.com]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz tar-ustar]) AC_CONFIG_FILES([Makefile]) -AC_CONFIG_SRCDIR([src/day.svg]) +AC_CONFIG_SRCDIR([tableau.svg]) -AC_PATH_PROG( - [BASE64], - [base64], +AC_PATH_PROG([BASE64], [base64]) +AS_IF( + [test -z "${BASE64}"], [AC_MSG_ERROR([base64 program not found])] ) -AC_PATH_PROG( - [SCOUR], - [scour], +AC_PATH_PROG([FONTFORGE], [fontforge]) +AS_IF( + [test -z "${FONTFORGE}"], + [AC_MSG_ERROR([fontforge program not found])] +) + +AC_PATH_PROG([SCOUR], [scour]) +AS_IF( + [test -z "${SCOUR}"], [AC_MSG_ERROR([scour program not found])] ) +AC_PATH_PROG([XSLTPROC], [xsltproc]) +AS_IF( + [test -z "${XSLTPROC}"], + [AC_MSG_ERROR([xsltproc program not found])] +) + AC_OUTPUT