]> gitweb.michael.orlitzky.com - charm-bypass.git/blob - configure.ac
COPYING: add to state the "or later" bit
[charm-bypass.git] / configure.ac
1 AC_PREREQ([2.71])
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])
7
8 AC_PATH_PROG([BASE64], [base64])
9 AS_IF(
10 [test -z "${BASE64}"],
11 [AC_MSG_ERROR([base64 program not found])]
12 )
13
14 AC_PATH_PROG([FONTFORGE], [fontforge])
15 AS_IF(
16 [test -z "${FONTFORGE}"],
17 [AC_MSG_ERROR([fontforge program not found])]
18 )
19
20 AC_PATH_PROG([SCOUR], [scour])
21 AS_IF(
22 [test -z "${SCOUR}"],
23 [AC_MSG_ERROR([scour program not found])]
24 )
25
26 AC_PATH_PROG([XSLTPROC], [xsltproc])
27 AS_IF(
28 [test -z "${XSLTPROC}"],
29 [AC_MSG_ERROR([xsltproc program not found])]
30 )
31
32 AC_OUTPUT