http://bugs.winehq.org/show_bug.cgi?id=3805
Summary: Font antialiasing does not work since 20050930 Product: Wine Version: 0.9.1. Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: major Priority: P2 Component: wine-gdi-(printing) AssignedTo: wine-bugs@winehq.org ReportedBy: t.artem@mailcity.com
On my computer (Fedora Core 4 partly upgraded to FC5/Rawhide) font antialiasing doesn't work in Wine versions 20050930, 0.9 and 0.9.1 (which was released today).
All previous wine versions work fine.
This is the extract of ./configure script: checking for FT_Init_FreeType in -lfreetype... yes checking for freetype-config... freetype-config checking for ft2build.h... yes checking for freetype/freetype.h... yes checking for freetype/ftglyph.h... yes checking for freetype/tttables.h... yes checking for freetype/ftnames.h... no checking for freetype/ftsnames.h... yes checking for freetype/ttnameid.h... yes checking for freetype/ftoutln.h... yes checking for freetype/ftwinfnt.h... yes checking for freetype/internal/sfnt.h... yes
Note that I have freetype-2.1.10 installed.
Both older wine versions and newer wine versions have `libfreetype.so.6` string compiled into gdi32.dll.so library.
Strace of regedit run tells me that wine indeed tries opening libfreetype library and MS core fonts installed on my Linux box:
strace -fF regedit ... [pid 15899] open("/usr/lib/libfreetype.so.6", O_RDONLY) = 12 [pid 15899] open("/usr/X11R6/lib/X11/fonts/TTF/arial.ttf", O_RDONLY) = 12 [pid 15899] open("/usr/X11R6/lib/X11/fonts/TTF/verdana.ttf", O_RDONLY) = 12 [pid 15899] open("/usr/X11R6/lib/X11/fonts/TTF/times.ttf", O_RDONLY) = 12 ...