Hi all,
I'm here again with a little question about my dispersed efforts over Wine development.
Now I'm trying to make some regression tests to identify when Lotus Notes started to show blank squares rather than icons for attachments.
And by this way I get some errors compiling (see bellow) Wine versions 0.9.1 and 0.9.4, but with the version 0.9.9 this errors don't occurs.
My guess is some version problem with freetype, but I didn't find any hints about this on the list history, though I have found some posts asking about the same problem.
I tried to compile Wine on a Debian r3.1 with gcc versions 3.3 and 4.1, and with freetype 2.2.1, but didn't get any success.
Any help is appreciated.
Regards,
--- 8< --- freetype.c:106: error: 'FT_Get_Module' undeclared here (not in a function) freetype.c:106: warning: type defaults to 'int' in declaration of 'pFT_Get_Module' freetype.c: In function 'WineEngGetFontData': freetype.c:3698: error: 'TT_Face' undeclared (first use in this function) freetype.c:3698: error: (Each undeclared identifier is reported only once freetype.c:3698: error: for each function it appears in.) freetype.c:3698: error: syntax error before 'tt_face' freetype.c:3699: error: 'SFNT_Interface' undeclared (first use in this function) freetype.c:3699: error: 'sfnt' undeclared (first use in this function) freetype.c:3703: error: syntax error before ')' token freetype.c:3703: error: 'tt_face' undeclared (first use in this function) freetype.c:3708: error: syntax error before ')' token freetype.c: In function 'is_hinting_enabled': freetype.c:3776: error: called object 'pFT_Get_Module' is not a function freetype.c:3777: warning: implicit declaration of function 'FT_DRIVER_HAS_HINTER' --- 8< ---
I found a way to fix this compile error.
I have deinstalled the package freetype2-dev (freetype 2.2.1) from my Debian system and I got a "build complete" with the package libttf-dev (freetype 1.5) already installed on my system.
It seems to be a conflict between two installed header versions.
After doing this I have got a segfault with gcc-4.1 when compiling Wine 0.9.4 with freetype 1.5, but works using CC variable when calling the configure script to change gcc version, like this:
/src/wine-0.9.4$ CC=gcc-3.3 ./configure
Thanks,