configure: Warn if the fonts aren't going to be built.
This commit is contained in:
parent
3dd0b2ef64
commit
8f6aa41a78
|
@ -10304,6 +10304,9 @@ if test "$FONTFORGE" != "false" -a -n "$FREETYPELIBS"
|
||||||
then
|
then
|
||||||
FONTSSUBDIRS="fonts"
|
FONTSSUBDIRS="fonts"
|
||||||
|
|
||||||
|
wine_cv_msg_fonts=no
|
||||||
|
else
|
||||||
|
wine_cv_msg_fonts=yes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "$as_me:$LINENO: checking for parport header/ppdev.h" >&5
|
echo "$as_me:$LINENO: checking for parport header/ppdev.h" >&5
|
||||||
|
@ -20859,6 +20862,13 @@ then
|
||||||
echo "*** enable Wine to use TrueType fonts."
|
echo "*** enable Wine to use TrueType fonts."
|
||||||
fi
|
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 \
|
if test -z "$ALSALIBS" -a \
|
||||||
-z "$ARTSC_LIBS" -a \
|
-z "$ARTSC_LIBS" -a \
|
||||||
-z "$AUDIOIOLIBS" -a \
|
-z "$AUDIOIOLIBS" -a \
|
||||||
|
|
10
configure.ac
10
configure.ac
|
@ -628,6 +628,9 @@ dnl Only build the fonts dir if we have both freetype and fontforge
|
||||||
if test "$FONTFORGE" != "false" -a -n "$FREETYPELIBS"
|
if test "$FONTFORGE" != "false" -a -n "$FREETYPELIBS"
|
||||||
then
|
then
|
||||||
AC_SUBST(FONTSSUBDIRS,"fonts")
|
AC_SUBST(FONTSSUBDIRS,"fonts")
|
||||||
|
wine_cv_msg_fonts=no
|
||||||
|
else
|
||||||
|
wine_cv_msg_fonts=yes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl **** Check for parport (currently Linux only) ****
|
dnl **** Check for parport (currently Linux only) ****
|
||||||
|
@ -1754,6 +1757,13 @@ then
|
||||||
echo "*** enable Wine to use TrueType fonts."
|
echo "*** enable Wine to use TrueType fonts."
|
||||||
fi
|
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 \
|
if test -z "$ALSALIBS" -a \
|
||||||
-z "$ARTSC_LIBS" -a \
|
-z "$ARTSC_LIBS" -a \
|
||||||
-z "$AUDIOIOLIBS" -a \
|
-z "$AUDIOIOLIBS" -a \
|
||||||
|
|
Loading…
Reference in New Issue