On Wed, 18 Jun 2008 09:41:49 +0900 Kenichi Handa wrote: > In article <20080617112122.177cb232.taylor@metasyntax.net>, Taylor > Venable writes: > > > I built Emacs from CVS this morning, and there's no font > > anti-aliasing being done. Here are the hopefully relevant lines > > from configure: > > > checking XFT_CFLAGS... -D_POSIX_THREAD_SAFE_FUNCTIONS > > -I/usr/pkg/include -I/usr/pkg/include/freetype2 checking XFT_LIBS... > > -Wl,-R/usr/pkg/lib -L/usr/pkg/lib -lXft -lXrender -lfontconfig > > -lfreetype -lz -lX11 checking X11/Xft/Xft.h usability... yes > > checking X11/Xft/Xft.h presence... yes checking for > > X11/Xft/Xft.h... yes checking for XftFontOpen in -lXft... yes > > checking for pkg-config... (cached) /usr/pkg/bin/pkg-config > > checking for libotf... no > > checking for pkg-config... (cached) /usr/pkg/bin/pkg-config > > checking for m17n-flt... no > > Please start Emacs as this: > % EMACS_FONT_LOG=1 emacs -Q > then show me the result of M-x font-show-log RET. Please see attached. Thanks, -- Taylor Venable http://real.metasyntax.net:2357/ foldr = lambda f, i, l: (len(l) == 1 and [f(l[0], i)] or [f(l[0], foldr(f, i, l[1:]))])[0]