From: Eli Zaretskii Date: Sat, 2 Feb 2008 15:49:46 +0000 (+0000) Subject: configure.in: If admin/unidata/UnicodeData.txt is present, copy X-Git-Tag: emacs-pretest-23.0.90~8232 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2ee27f27757302bf773ec17b6b6aae00ce751b41;p=emacs.git configure.in: If admin/unidata/UnicodeData.txt is present, copy admin/unidata/Makefile.in to Makefile. configure: Regenerated. --- diff --git a/ChangeLog b/ChangeLog index 001b657cdc2..09fd6e49d97 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-02-02 Eli Zaretskii + + * configure.in: If admin/unidata/UnicodeData.txt is present, copy + admin/unidata/Makefile.in to Makefile. + * configure: Regenerated. + 2008-02-01 Miles Bader * configure.in: Use OPTION_DEFAULT_ON for [freetype], [xft], diff --git a/configure b/configure index 5811e9c3312..9708c4e44a5 100755 --- a/configure +++ b/configure @@ -12776,6 +12776,10 @@ _ACEOF fi fi fi +if test "$HAVE_XFT" != "yes"; then + HAVE_XFT=no +fi + HAVE_FREETYPE=no ### Use -lfreetype if available, unless `--with-freetype=no'. @@ -23953,6 +23957,14 @@ echo " Does Emacs use -lpng? ${HAVE_PNG}" 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 @@ -25278,6 +25290,8 @@ echo creating src/Makefile -e 's,/\*\*/#\(.*\)$,/* \1 */,' \ < Makefile.c > junk.c if test -f ${srcdir}/admin/unidata/UnicodeData.txt; then + echo creating ${srcdir}/admin/unidata/Makefile + cp ${srcdir}/admin/unidata/Makefile.in ${srcdir}/admin/unidata/Makefile CPPFLAGS="$CPPFLAGS -DHAVE_UNIDATA" fi $CPP $undefs -I. -I$srcdir/src $CPPFLAGS junk.c | \ diff --git a/configure.in b/configure.in index 9476b5fb931..c0e5a77dd36 100644 --- a/configure.in +++ b/configure.in @@ -3192,6 +3192,8 @@ echo creating src/Makefile -e 's,/\*\*/#\(.*\)$,/* \1 */,' \ < Makefile.c > junk.c if test -f ${srcdir}/admin/unidata/UnicodeData.txt; then + echo creating ${srcdir}/admin/unidata/Makefile + cp ${srcdir}/admin/unidata/Makefile.in ${srcdir}/admin/unidata/Makefile CPPFLAGS="$CPPFLAGS -DHAVE_UNIDATA" fi $CPP $undefs -I. -I$srcdir/src $CPPFLAGS junk.c | \