diff options
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 7d791f3..47652a4 100644 --- a/configure.ac +++ b/configure.ac @@ -29,7 +29,13 @@ AM_MAINTAINER_MODE AC_PROG_INSTALL AC_PATH_PROG(MKFONTSCALE, mkfontscale) +if test x"$MKFONTSCALE" = x; then + AC_MSG_ERROR([mkfontscale is required to build bh-ttf fonts.]) +fi AC_PATH_PROG(MKFONTDIR, mkfontdir) +if test x"$MKFONTDIR" = x; then + AC_MSG_ERROR([mkfontdir is required to build bh-ttf fonts.]) +fi AC_PATH_PROG(FCCACHE, fc-cache) m4_ifdef([AS_HELP_STRING], , [m4_define([AS_HELP_STRING], m4_defn([AC_HELP_STRING]))]) |