Hi,
I tried compiling current cvs wine on RH 7.2, and it fails...
gcc -c -I. -I. -I../../include -I../../include -I/usr/include/freetype2 -g -O2 -Wall -mpreferred-stack-boundary=2 -fPIC -D__WINE__ -D_REENTRANT -I/usr/X11R6/include -o freetype.o freetype.c freetype.c:43:31: freetype/ftnames.h: No such file or directory make[2]: *** [freetype.o] Error 1 make[2]: Leaving directory `/share/building/wine/wine/dlls/gdi'
It seems that the autoconf test for freetype/ftnames.h doesn't work properly. The file is not present in the RH package, and is not included in the freetype-2.0.3 tarball either.
BTW, I'm not on the list atm.
Ben.
Ben Stanley wrote:
Hi,
I tried compiling current cvs wine on RH 7.2, and it fails...
gcc -c -I. -I. -I../../include -I../../include -I/usr/include/freetype2 -g -O2 -Wall -mpreferred-stack-boundary=2 -fPIC -D__WINE__ -D_REENTRANT -I/usr/X11R6/include -o freetype.o freetype.c freetype.c:43:31: freetype/ftnames.h: No such file or directory make[2]: *** [freetype.o] Error 1 make[2]: Leaving directory `/share/building/wine/wine/dlls/gdi'
It seems that the autoconf test for freetype/ftnames.h doesn't work properly. The file is not present in the RH package, and is not included in the freetype-2.0.3 tarball either.
It works fine for me with RH 7.2 and freetype-2.0.3. Try
rm config.* ./configure make depend make
James Juran
James Juran wrote:
It works fine for me with RH 7.2 and freetype-2.0.3. Try
rm config.*
Duh. why didn't I think of that?
Thanks. It works now. Ben.