Skip to content
Snippets Groups Projects
Commit 8f6aa41a authored by Michael McCormack's avatar Michael McCormack Committed by Alexandre Julliard
Browse files

configure: Warn if the fonts aren't going to be built.

parent 3dd0b2ef
No related branches found
No related tags found
No related merge requests found
......@@ -10304,6 +10304,9 @@ 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
......@@ -20859,6 +20862,13 @@ then
echo "*** enable Wine to use TrueType fonts."
fi
 
if test "$wine_cv_msg_fonts" = "yes"
then
echo
echo "*** Warning: Freetype or Fontforge is missing."
echo "*** Fonts will not be built. Dialog text may be invisible or unaligned."
fi
if test -z "$ALSALIBS" -a \
-z "$ARTSC_LIBS" -a \
-z "$AUDIOIOLIBS" -a \
......
......@@ -628,6 +628,9 @@ 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) ****
......@@ -1754,6 +1757,13 @@ then
echo "*** enable Wine to use TrueType fonts."
fi
if test "$wine_cv_msg_fonts" = "yes"
then
echo
echo "*** Warning: Freetype or Fontforge is missing."
echo "*** Fonts will not be built. Dialog text may be invisible or unaligned."
fi
if test -z "$ALSALIBS" -a \
-z "$ARTSC_LIBS" -a \
-z "$AUDIOIOLIBS" -a \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment