aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-03-05 20:03:31 +0000
committerGlenn Morris2008-03-05 20:03:31 +0000
commit77dfeef5bd7d297bab6730b7744254bd8173e5dd (patch)
tree82f802d972f85269c3b207e2f6a076b65278eaea
parent46bb649d857c0deb75d7a887d2d819dc39bca366 (diff)
downloademacs-77dfeef5bd7d297bab6730b7744254bd8173e5dd.tar.gz
emacs-77dfeef5bd7d297bab6730b7744254bd8173e5dd.zip
Regenerate.
-rw-r--r--ChangeLog3
-rwxr-xr-xconfigure77
2 files changed, 36 insertions, 44 deletions
diff --git a/ChangeLog b/ChangeLog
index b559215f45a..35ede015ca2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
12008-03-05 Glenn Morris <rgm@gnu.org> 12008-03-05 Glenn Morris <rgm@gnu.org>
2 2
3 * configure.in: Enable font-backend by default. 3 * configure.in: Enable font-backend by default.
4 (USE_FONT_BACKEND): Set to "no" in absence of X.
5 (PKG_CONFIG): Don't set multiple times, once is enough.
6 (HAVE_FREETYPE, HAVE_LIBOTF, HAVE_M17N_FLT): Tweak config.in text.
4 7
52008-03-03 Glenn Morris <rgm@gnu.org> 82008-03-03 Glenn Morris <rgm@gnu.org>
6 9
diff --git a/configure b/configure
index 6c55beb630b..f2c2110faba 100755
--- a/configure
+++ b/configure
@@ -12390,27 +12390,25 @@ _ACEOF
12390 CFLAGS=$late_CFLAGS 12390 CFLAGS=$late_CFLAGS
12391fi 12391fi
12392 12392
12393#### For font-backend 12393### Start of font-backend section.
12394if test "${USE_FONT_BACKEND}" != "no"; then 12394if test "${HAVE_X11}" != "yes"; then
12395 USE_FONT_BACKEND=no
12396fi
12395 12397
12398if test "${USE_FONT_BACKEND}" = "yes"; then
12396 12399
12397cat >>confdefs.h <<\_ACEOF 12400cat >>confdefs.h <<\_ACEOF
12398#define USE_FONT_BACKEND 1 12401#define USE_FONT_BACKEND 1
12399_ACEOF 12402_ACEOF
12400 12403
12401 12404
12402### Use -lXft if available, unless `--with-freetype=no' nor `--with-xft=no'. 12405 ## Use -lXft if available, unless `--with-freetype=no' nor `--with-xft=no'.
12403HAVE_XFT=maybe 12406 HAVE_XFT=maybe
12404if test "${HAVE_X11}" = "yes"; then
12405 if test "x${with_freetype}" = "xno"; then 12407 if test "x${with_freetype}" = "xno"; then
12406 with_xft="no"; 12408 with_xft="no";
12407 fi 12409 fi
12408 if test "x${with_xft}" != "xno"; then 12410 if test "x${with_xft}" != "xno"; then
12409 12411
12410 if test "X${with_pkg_config_prog}" != X; then
12411 PKG_CONFIG="${with_pkg_config_prog}"
12412 fi
12413
12414 12412
12415 succeeded=no 12413 succeeded=no
12416 12414
@@ -12719,23 +12717,20 @@ _ACEOF
12719 CPPFLAGS="$OLD_CPPFLAGS" 12717 CPPFLAGS="$OLD_CPPFLAGS"
12720 CFLAGS="$OLD_CFLAGS" 12718 CFLAGS="$OLD_CFLAGS"
12721 LIBS="$OLD_LIBS" 12719 LIBS="$OLD_LIBS"
12722 fi 12720 fi # "${HAVE_XFT}" = "yes"
12723 fi 12721 fi # "$HAVE_XFT" != no
12722 fi # "x${with_xft}" != "xno"
12723
12724 if test "$HAVE_XFT" != "yes"; then
12725 HAVE_XFT=no
12724 fi 12726 fi
12725fi
12726if test "$HAVE_XFT" != "yes"; then
12727 HAVE_XFT=no
12728fi
12729 12727
12730 12728
12731HAVE_FREETYPE=no 12729 HAVE_FREETYPE=no
12732### Use -lfreetype if available, unless `--with-freetype=no'. 12730 ### Use -lfreetype if available, unless `--with-freetype=no'.
12733if test "${HAVE_XFT}" = "yes"; then 12731 if test "${HAVE_XFT}" = "yes"; then
12734 HAVE_FREETYPE=yes 12732 HAVE_FREETYPE=yes
12735elif test "x${with_freetype}" != "xno"; then 12733 elif test "x${with_freetype}" != "xno"; then
12736 if test "X${with_pkg_config_prog}" != X; then
12737 PKG_CONFIG="${with_pkg_config_prog}"
12738 fi
12739 12734
12740 12735
12741 succeeded=no 12736 succeeded=no
@@ -12831,7 +12826,7 @@ echo "${ECHO_T}no" >&6; }
12831 HAVE_FREETYPE=no 12826 HAVE_FREETYPE=no
12832 fi 12827 fi
12833 12828
12834 if test "${HAVE_FREETYPE}" = "yes"; then 12829 if test "${HAVE_FREETYPE}" = "yes"; then
12835 12830
12836 succeeded=no 12831 succeeded=no
12837 12832
@@ -12926,23 +12921,20 @@ echo "${ECHO_T}no" >&6; }
12926 HAVE_FC=no 12921 HAVE_FC=no
12927 fi 12922 fi
12928 12923
12929 if test "${HAVE_FC}" = "no"; then 12924 if test "${HAVE_FC}" = "no"; then
12930 HAVE_FREETYPE=no 12925 HAVE_FREETYPE=no
12926 fi
12931 fi 12927 fi
12932 fi 12928 fi
12933fi
12934 12929
12935HAVE_LIBOTF=no 12930 HAVE_LIBOTF=no
12936if test "${HAVE_FREETYPE}" = "yes"; then 12931 if test "${HAVE_FREETYPE}" = "yes"; then
12937 12932
12938cat >>confdefs.h <<\_ACEOF 12933cat >>confdefs.h <<\_ACEOF
12939#define HAVE_FREETYPE 1 12934#define HAVE_FREETYPE 1
12940_ACEOF 12935_ACEOF
12941 12936
12942 if test "${with_libotf}" != "no"; then 12937 if test "${with_libotf}" != "no"; then
12943 if test "X${with_pkg_config_prog}" != X; then
12944 PKG_CONFIG="${with_pkg_config_prog}"
12945 fi
12946 12938
12947 succeeded=no 12939 succeeded=no
12948 12940
@@ -13037,21 +13029,18 @@ echo "${ECHO_T}no" >&6; }
13037 HAVE_LIBOTF=no 13029 HAVE_LIBOTF=no
13038 fi 13030 fi
13039 13031
13040 if test "$HAVE_LIBOTF" = "yes"; then 13032 if test "$HAVE_LIBOTF" = "yes"; then
13041 13033
13042cat >>confdefs.h <<\_ACEOF 13034cat >>confdefs.h <<\_ACEOF
13043#define HAVE_LIBOTF 1 13035#define HAVE_LIBOTF 1
13044_ACEOF 13036_ACEOF
13045 13037
13038 fi
13046 fi 13039 fi
13047 fi 13040 fi
13048fi
13049 13041
13050HAVE_M17N_FLT=no 13042 HAVE_M17N_FLT=no
13051if test "${with_m17n_flt}" != "no"; then 13043 if test "${with_m17n_flt}" != "no"; then
13052 if test "X${with_pkg_config_prog}" != X; then
13053 PKG_CONFIG="${with_pkg_config_prog}"
13054 fi
13055 13044
13056 succeeded=no 13045 succeeded=no
13057 13046
@@ -13146,14 +13135,14 @@ echo "${ECHO_T}no" >&6; }
13146 HAVE_M17N_FLT=no 13135 HAVE_M17N_FLT=no
13147 fi 13136 fi
13148 13137
13149 if test "$HAVE_M17N_FLT" = "yes"; then 13138 if test "$HAVE_M17N_FLT" = "yes"; then
13150 13139
13151cat >>confdefs.h <<\_ACEOF 13140cat >>confdefs.h <<\_ACEOF
13152#define HAVE_M17N_FLT 1 13141#define HAVE_M17N_FLT 1
13153_ACEOF 13142_ACEOF
13154 13143
13144 fi
13155 fi 13145 fi
13156fi
13157 13146
13158 13147
13159 13148
@@ -13164,8 +13153,8 @@ fi
13164 13153
13165 13154
13166 13155
13167fi 13156fi # "${USE_FONT_BACKEND}" = "yes"
13168#### End for font-backend 13157### End of font-backend section.
13169 13158
13170### Use -lXpm if available, unless `--with-xpm=no'. 13159### Use -lXpm if available, unless `--with-xpm=no'.
13171HAVE_XPM=no 13160HAVE_XPM=no