http://bugs.winehq.org/show_bug.cgi?id=7022
Summary: makefile includes wrong config.h Product: Wine Version: unspecified Platform: PC-x86-64 OS/Version: Linux Status: UNCONFIRMED Severity: blocker Priority: P2 Component: wine-tools AssignedTo: wine-bugs@winehq.org ReportedBy: richardvoigt@gmail.com
When building wine outside the source tree (actually in "win32" subdirectory because I intend to later build "win64" as well), I get:
sfnt2fnt needs to be built with FreeType support
Well, ../configure found freetype, and include/config.h has #define HAVE_FREETYPE 1
But, we're not using the right include/config.h, since make spits out the following: gcc -m32 -c -I../../tools -I. -I../../include -I../include -I/usr/include/freetype2 -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -g -O2 -o sfnt2fnt.o ../../tools/sfnt2fnt.c
sfnt2fnt.o: ../../tools/sfnt2fnt.c ../../include/config.h \ ../../include/wine/port.h /usr/include/fcntl.h \ (etc, etc)
Should be ../include/config.h, not ../../include/config.h