summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Salomon <dilinger@debian.org>2008-10-25 20:50:21 +0200
committerJulien Cristau <jcristau@debian.org>2008-10-25 21:09:40 +0200
commite35a64bf048721d063fe373cc1c5403cdf036960 (patch)
tree496d7b5549e459ddc38d9a15e6e99bef2431116c
parent32cf24feb7e6b594440c4ef24d2d2ed986de09a8 (diff)
Bug#5176: cause configure to bail if mkfontscale or mkfontdir are not found
Signed-off-by: Julien Cristau <jcristau@debian.org>
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 3797991..cda4b76 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 adobe-utopia-type1 fonts.])
+fi
AC_PATH_PROG(MKFONTDIR, mkfontdir)
+if test x"$MKFONTDIR" = x; then
+ AC_MSG_ERROR([mkfontdir is required to build adobe-utopia-type1 fonts.])
+fi
AC_PATH_PROG(FCCACHE, fc-cache)
m4_ifdef([AS_HELP_STRING], , [m4_define([AS_HELP_STRING], m4_defn([AC_HELP_STRING]))])