http://bugs.winehq.org/show_bug.cgi?id=17024
Summary: wine 1.0.1 problem with freetype 2.3.8: 'FT_MulFix' undeclared here (not in a function) Product: Wine Version: 1.0.1 Platform: Macintosh URL: http://trac.macports.org/ticket/18087 OS/Version: Mac OS X 10.5 Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: wine-2009@ryandesign.com
Created an attachment (id=18822) --> (http://bugs.winehq.org/attachment.cgi?id=18822) all the errors
Trying to build wine 1.0.1 on Mac OS X 10.5.6 with Xcode 3.1.1 and MacPorts 1.7.0, I get this:
freetype.c:166: error: 'FT_MulFix' undeclared here (not in a function)
And then a bunch of subsequent errors relating to that. This seems to be new as of freetype 2.3.8.
wine 1.1.13 works fine. It seems to include different code in freetype.c. Where 1.0.1 just says:
MAKE_FUNCPTR(FT_MulFix);
1.1.13 says:
#ifdef FT_MULFIX_INLINED #define pFT_MulFix FT_MULFIX_INLINED #else MAKE_FUNCPTR(FT_MulFix); #endif