From 4efcc8d152908c623a964d591c71bcce54541263 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Wed, 30 Jan 2008 19:52:04 +0000 Subject: [PATCH] configure.in: Use freetype/xft by default Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-327 --- configure | 8 ++++---- configure.in | 4 ++-- 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: --without-gif don't compile with GIF image support --without-png don't compile with PNG image support --without-rsvg don't compile with SVG image support - --with-freetype use -lfreetype for local fonts support - --with-xft use -lXft for anti aliased fonts + --without-freetype don't use Freetype for local font support + --without-xft don't use XFT for anti aliased fonts --without-libotf don't use libotf for OpenType font support --without-m17n-flt don't use m17n-flt for text shaping --with-gtk use GTK toolkit @@ -2017,7 +2017,7 @@ fi if test "${with_freetype+set}" = set; then withval=$with_freetype; else - with_freetype=no + with_freetype=yes fi @@ -2025,7 +2025,7 @@ fi if test "${with_xft+set}" = set; then withval=$with_xft; else - with_xft=no + with_xft=yes fi 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]) OPTION_DEFAULT_ON([png],[don't compile with PNG image support]) OPTION_DEFAULT_ON([rsvg],[don't compile with SVG image support]) -OPTION_DEFAULT_OFF([freetype],[use -lfreetype for local fonts support]) -OPTION_DEFAULT_OFF([xft],[use -lXft for anti aliased fonts]) +OPTION_DEFAULT_ON([freetype],[don't use Freetype for local font support]) +OPTION_DEFAULT_ON([xft],[don't use XFT for anti aliased fonts]) OPTION_DEFAULT_ON([libotf],[don't use libotf for OpenType font support]) OPTION_DEFAULT_ON([m17n-flt],[don't use m17n-flt for text shaping]) -- 2.11.4.GIT