configure: Make the font warning more explicit about what package is missing.

This commit is contained in:
Alexandre Julliard 2006-06-08 11:26:44 +02:00
parent 8e01c1b2a3
commit baf3f5d6f9
2 changed files with 14 additions and 10 deletions

12
configure vendored
View File

@ -12237,9 +12237,6 @@ if test "$FONTFORGE" != "false" -a -n "$FREETYPELIBS"
then
FONTSSUBDIRS="fonts"
wine_cv_msg_fonts=no
else
wine_cv_msg_fonts=yes
fi
{ echo "$as_me:$LINENO: checking for parport header/ppdev.h" >&5
@ -22836,10 +22833,15 @@ then
exitcode=1
fi
if test "$wine_cv_msg_fonts" = "yes"
if test -z "$FONTSSUBDIRS"
then
echo
echo "*** Warning: FreeType or FontForge is missing."
if test "$FONTFORGE" = "false"
then
echo "*** Warning: FontForge is missing."
else
echo "*** Warning: FreeType is missing."
fi
echo "*** Fonts will not be built. Dialog text may be invisible or unaligned."
exitcode=1
fi

View File

@ -719,9 +719,6 @@ dnl Only build the fonts dir if we have both freetype and fontforge
if test "$FONTFORGE" != "false" -a -n "$FREETYPELIBS"
then
AC_SUBST(FONTSSUBDIRS,"fonts")
wine_cv_msg_fonts=no
else
wine_cv_msg_fonts=yes
fi
dnl **** Check for parport (currently Linux only) ****
@ -1854,10 +1851,15 @@ then
exitcode=1
fi
if test "$wine_cv_msg_fonts" = "yes"
if test -z "$FONTSSUBDIRS"
then
echo
echo "*** Warning: FreeType or FontForge is missing."
if test "$FONTFORGE" = "false"
then
echo "*** Warning: FontForge is missing."
else
echo "*** Warning: FreeType is missing."
fi
echo "*** Fonts will not be built. Dialog text may be invisible or unaligned."
exitcode=1
fi