From cb7b01b2d0a27cf69e45489ec154bc01e6cb6d93 Mon Sep 17 00:00:00 2001 From: Andres Salomon Date: Sat, 25 Oct 2008 20:50:21 +0200 Subject: Bug#5176: cause configure to bail if mkfontscale or mkfontdir are not found Signed-off-by: Julien Cristau --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.ac b/configure.ac index 91243e1..948fd62 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 misc-ethiopic fonts.]) +fi AC_PATH_PROG(MKFONTDIR, mkfontdir) +if test x"$MKFONTDIR" = x; then + AC_MSG_ERROR([mkfontdir is required to build misc-ethiopic fonts.]) +fi AC_PATH_PROG(FCCACHE, fc-cache) m4_ifdef([AS_HELP_STRING], , [m4_define([AS_HELP_STRING], m4_defn([AC_HELP_STRING]))]) -- cgit v1.2.3