Abort configure if no available font backend

This commit is contained in:
kichikuou
2017-02-26 18:20:21 +09:00
parent 82a64e8cee
commit f8c576cab9
2 changed files with 2 additions and 2 deletions
Vendored
+1 -1
View File
@@ -17901,7 +17901,7 @@ if test "x$no_ft" != xyes; then
EXTRALIBS="$EXTRALIBS $FT2_LIBS"
EXTRACFLAGS="$EXTRACFLAGS $FT2_CFLAGS"
fi
if test x"SRC_FONT" = "x"; then
if test x"$SRC_FONT" = "x"; then
as_fn_error $? "\"*** No font device available ***\"" "$LINENO" 5;
fi
+1 -1
View File
@@ -707,7 +707,7 @@ if test "x$no_ft" != xyes; then
fi
dnl
dnl check null
if test x"SRC_FONT" = "x"; then
if test x"$SRC_FONT" = "x"; then
AC_MSG_ERROR("*** No font device available ***");
fi
AC_SUBST(SRC_FONT)