diff options
| author | Miles Bader | 2008-01-30 19:52:04 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-01-30 19:52:04 +0000 |
| commit | 4efcc8d152908c623a964d591c71bcce54541263 (patch) | |
| tree | 0a6ea892bcb8947635723cb27ee19406af3445b4 | |
| parent | 44ac758ddbf147ec5a76778a58f01a21daacbba8 (diff) | |
| download | emacs-4efcc8d152908c623a964d591c71bcce54541263.tar.gz emacs-4efcc8d152908c623a964d591c71bcce54541263.zip | |
configure.in: Use freetype/xft by default
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-327
| -rwxr-xr-x | configure | 8 | ||||
| -rw-r--r-- | configure.in | 4 |
2 files changed, 6 insertions, 6 deletions
| @@ -1359,8 +1359,8 @@ Optional Packages: | |||
| 1359 | --without-gif don't compile with GIF image support | 1359 | --without-gif don't compile with GIF image support |
| 1360 | --without-png don't compile with PNG image support | 1360 | --without-png don't compile with PNG image support |
| 1361 | --without-rsvg don't compile with SVG image support | 1361 | --without-rsvg don't compile with SVG image support |
| 1362 | --with-freetype use -lfreetype for local fonts support | 1362 | --without-freetype don't use Freetype for local font support |
| 1363 | --with-xft use -lXft for anti aliased fonts | 1363 | --without-xft don't use XFT for anti aliased fonts |
| 1364 | --without-libotf don't use libotf for OpenType font support | 1364 | --without-libotf don't use libotf for OpenType font support |
| 1365 | --without-m17n-flt don't use m17n-flt for text shaping | 1365 | --without-m17n-flt don't use m17n-flt for text shaping |
| 1366 | --with-gtk use GTK toolkit | 1366 | --with-gtk use GTK toolkit |
| @@ -2017,7 +2017,7 @@ fi | |||
| 2017 | if test "${with_freetype+set}" = set; then | 2017 | if test "${with_freetype+set}" = set; then |
| 2018 | withval=$with_freetype; | 2018 | withval=$with_freetype; |
| 2019 | else | 2019 | else |
| 2020 | with_freetype=no | 2020 | with_freetype=yes |
| 2021 | fi | 2021 | fi |
| 2022 | 2022 | ||
| 2023 | 2023 | ||
| @@ -2025,7 +2025,7 @@ fi | |||
| 2025 | if test "${with_xft+set}" = set; then | 2025 | if test "${with_xft+set}" = set; then |
| 2026 | withval=$with_xft; | 2026 | withval=$with_xft; |
| 2027 | else | 2027 | else |
| 2028 | with_xft=no | 2028 | with_xft=yes |
| 2029 | fi | 2029 | fi |
| 2030 | 2030 | ||
| 2031 | 2031 | ||
diff --git a/configure.in b/configure.in index 7fa13e6ecf0..37b19900638 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -135,8 +135,8 @@ OPTION_DEFAULT_ON([gif],[don't compile with GIF image support]) | |||
| 135 | OPTION_DEFAULT_ON([png],[don't compile with PNG image support]) | 135 | OPTION_DEFAULT_ON([png],[don't compile with PNG image support]) |
| 136 | OPTION_DEFAULT_ON([rsvg],[don't compile with SVG image support]) | 136 | OPTION_DEFAULT_ON([rsvg],[don't compile with SVG image support]) |
| 137 | 137 | ||
| 138 | OPTION_DEFAULT_OFF([freetype],[use -lfreetype for local fonts support]) | 138 | OPTION_DEFAULT_ON([freetype],[don't use Freetype for local font support]) |
| 139 | OPTION_DEFAULT_OFF([xft],[use -lXft for anti aliased fonts]) | 139 | OPTION_DEFAULT_ON([xft],[don't use XFT for anti aliased fonts]) |
| 140 | OPTION_DEFAULT_ON([libotf],[don't use libotf for OpenType font support]) | 140 | OPTION_DEFAULT_ON([libotf],[don't use libotf for OpenType font support]) |
| 141 | OPTION_DEFAULT_ON([m17n-flt],[don't use m17n-flt for text shaping]) | 141 | OPTION_DEFAULT_ON([m17n-flt],[don't use m17n-flt for text shaping]) |
| 142 | 142 | ||