aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2008-01-30 19:52:04 +0000
committerMiles Bader2008-01-30 19:52:04 +0000
commit4efcc8d152908c623a964d591c71bcce54541263 (patch)
tree0a6ea892bcb8947635723cb27ee19406af3445b4
parent44ac758ddbf147ec5a76778a58f01a21daacbba8 (diff)
downloademacs-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-xconfigure8
-rw-r--r--configure.in4
2 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index ab2129a4060..5811e9c3312 100755
--- a/configure
+++ b/configure
@@ -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
2017if test "${with_freetype+set}" = set; then 2017if test "${with_freetype+set}" = set; then
2018 withval=$with_freetype; 2018 withval=$with_freetype;
2019else 2019else
2020 with_freetype=no 2020 with_freetype=yes
2021fi 2021fi
2022 2022
2023 2023
@@ -2025,7 +2025,7 @@ fi
2025if test "${with_xft+set}" = set; then 2025if test "${with_xft+set}" = set; then
2026 withval=$with_xft; 2026 withval=$with_xft;
2027else 2027else
2028 with_xft=no 2028 with_xft=yes
2029fi 2029fi
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])
135OPTION_DEFAULT_ON([png],[don't compile with PNG image support]) 135OPTION_DEFAULT_ON([png],[don't compile with PNG image support])
136OPTION_DEFAULT_ON([rsvg],[don't compile with SVG image support]) 136OPTION_DEFAULT_ON([rsvg],[don't compile with SVG image support])
137 137
138OPTION_DEFAULT_OFF([freetype],[use -lfreetype for local fonts support]) 138OPTION_DEFAULT_ON([freetype],[don't use Freetype for local font support])
139OPTION_DEFAULT_OFF([xft],[use -lXft for anti aliased fonts]) 139OPTION_DEFAULT_ON([xft],[don't use XFT for anti aliased fonts])
140OPTION_DEFAULT_ON([libotf],[don't use libotf for OpenType font support]) 140OPTION_DEFAULT_ON([libotf],[don't use libotf for OpenType font support])
141OPTION_DEFAULT_ON([m17n-flt],[don't use m17n-flt for text shaping]) 141OPTION_DEFAULT_ON([m17n-flt],[don't use m17n-flt for text shaping])
142 142