changeset 91408:e65c11446d7e

(HAVE_XFT): Ensure it is either "yes" or "no". (USE_FONT_BACKEND, HAVE_FREETYPE, HAVE_M17N_FLT, HAVE_LIBOTF) (HAVE_XFT): Add "Does Emacs use..." messages at end.
author Glenn Morris <rgm@gnu.org>
date Sat, 02 Feb 2008 03:44:32 +0000
parents 038121eb432e
children db373dffa2b5
files configure.in
diffstat 1 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Sat Feb 02 03:42:54 2008 +0000
+++ b/configure.in	Sat Feb 02 03:44:32 2008 +0000
@@ -2046,6 +2046,11 @@
     fi
   fi
 fi
+dnl For the "Does Emacs use" message at the end.
+if test "$HAVE_XFT" != "yes"; then
+   HAVE_XFT=no
+fi
+
 
 HAVE_FREETYPE=no
 ### Use -lfreetype if available, unless `--with-freetype=no'.
@@ -3069,6 +3074,14 @@
 echo "  Does Emacs use -lrsvg-2?                                ${HAVE_RSVG}"
 echo "  Does Emacs use -lgpm?                                   ${HAVE_GPM}"
 echo "  Does Emacs use -ldbus?                                  ${HAVE_DBUS}"
+echo "  Does Emacs use a font backend?                          ${USE_FONT_BACKEND}"
+
+if test "${USE_FONT_BACKEND}" = "yes"; then
+  echo "  Does Emacs use -lfreetype?                              ${HAVE_FREETYPE}"
+  echo "  Does Emacs use -lm17n-flt?                              ${HAVE_M17N_FLT}"
+  echo "  Does Emacs use -lotf?                                   ${HAVE_LIBOTF}"
+  echo "  Does Emacs use -lxft?                                   ${HAVE_XFT}"
+fi
 echo "  Does Emacs use X toolkit scroll bars?                   ${USE_TOOLKIT_SCROLL_BARS}"
 echo