aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2008-02-02 15:49:46 +0000
committerEli Zaretskii2008-02-02 15:49:46 +0000
commit2ee27f27757302bf773ec17b6b6aae00ce751b41 (patch)
tree35435c2a7c5aa754c039ad6c4cbf3b169fd6a1a3
parent5889232dc5d22ddef46ba32aaa7db62a61002cc8 (diff)
downloademacs-2ee27f27757302bf773ec17b6b6aae00ce751b41.tar.gz
emacs-2ee27f27757302bf773ec17b6b6aae00ce751b41.zip
configure.in: If admin/unidata/UnicodeData.txt is present, copy
admin/unidata/Makefile.in to Makefile. configure: Regenerated.
-rw-r--r--ChangeLog6
-rwxr-xr-xconfigure14
-rw-r--r--configure.in2
3 files changed, 22 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 001b657cdc2..09fd6e49d97 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
12008-02-02 Eli Zaretskii <eliz@gnu.org>
2
3 * configure.in: If admin/unidata/UnicodeData.txt is present, copy
4 admin/unidata/Makefile.in to Makefile.
5 * configure: Regenerated.
6
12008-02-01 Miles Bader <miles@gnu.org> 72008-02-01 Miles Bader <miles@gnu.org>
2 8
3 * configure.in: Use OPTION_DEFAULT_ON for [freetype], [xft], 9 * 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
12776 fi 12776 fi
12777 fi 12777 fi
12778fi 12778fi
12779if test "$HAVE_XFT" != "yes"; then
12780 HAVE_XFT=no
12781fi
12782
12779 12783
12780HAVE_FREETYPE=no 12784HAVE_FREETYPE=no
12781### Use -lfreetype if available, unless `--with-freetype=no'. 12785### Use -lfreetype if available, unless `--with-freetype=no'.
@@ -23953,6 +23957,14 @@ echo " Does Emacs use -lpng? ${HAVE_PNG}"
23953echo " Does Emacs use -lrsvg-2? ${HAVE_RSVG}" 23957echo " Does Emacs use -lrsvg-2? ${HAVE_RSVG}"
23954echo " Does Emacs use -lgpm? ${HAVE_GPM}" 23958echo " Does Emacs use -lgpm? ${HAVE_GPM}"
23955echo " Does Emacs use -ldbus? ${HAVE_DBUS}" 23959echo " Does Emacs use -ldbus? ${HAVE_DBUS}"
23960echo " Does Emacs use a font backend? ${USE_FONT_BACKEND}"
23961
23962if test "${USE_FONT_BACKEND}" = "yes"; then
23963 echo " Does Emacs use -lfreetype? ${HAVE_FREETYPE}"
23964 echo " Does Emacs use -lm17n-flt? ${HAVE_M17N_FLT}"
23965 echo " Does Emacs use -lotf? ${HAVE_LIBOTF}"
23966 echo " Does Emacs use -lxft? ${HAVE_XFT}"
23967fi
23956echo " Does Emacs use X toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}" 23968echo " Does Emacs use X toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}"
23957echo 23969echo
23958 23970
@@ -25278,6 +25290,8 @@ echo creating src/Makefile
25278 -e 's,/\*\*/#\(.*\)$,/* \1 */,' \ 25290 -e 's,/\*\*/#\(.*\)$,/* \1 */,' \
25279 < Makefile.c > junk.c 25291 < Makefile.c > junk.c
25280 if test -f ${srcdir}/admin/unidata/UnicodeData.txt; then 25292 if test -f ${srcdir}/admin/unidata/UnicodeData.txt; then
25293 echo creating ${srcdir}/admin/unidata/Makefile
25294 cp ${srcdir}/admin/unidata/Makefile.in ${srcdir}/admin/unidata/Makefile
25281 CPPFLAGS="$CPPFLAGS -DHAVE_UNIDATA" 25295 CPPFLAGS="$CPPFLAGS -DHAVE_UNIDATA"
25282 fi 25296 fi
25283 $CPP $undefs -I. -I$srcdir/src $CPPFLAGS junk.c | \ 25297 $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
3192 -e 's,/\*\*/#\(.*\)$,/* \1 */,' \ 3192 -e 's,/\*\*/#\(.*\)$,/* \1 */,' \
3193 < Makefile.c > junk.c 3193 < Makefile.c > junk.c
3194 if test -f ${srcdir}/admin/unidata/UnicodeData.txt; then 3194 if test -f ${srcdir}/admin/unidata/UnicodeData.txt; then
3195 echo creating ${srcdir}/admin/unidata/Makefile
3196 cp ${srcdir}/admin/unidata/Makefile.in ${srcdir}/admin/unidata/Makefile
3195 CPPFLAGS="$CPPFLAGS -DHAVE_UNIDATA" 3197 CPPFLAGS="$CPPFLAGS -DHAVE_UNIDATA"
3196 fi 3198 fi
3197 $CPP $undefs -I. -I$srcdir/src $CPPFLAGS junk.c | \ 3199 $CPP $undefs -I. -I$srcdir/src $CPPFLAGS junk.c | \