On Sat, Jan 03, 2004 at 12:07:29AM -0600, Jason White wrote: > I'm trying to compile fvwm 2.5.9 from CVS (fetched Jan 3 5:55:41 UTC > 2004) with xft support, but configure shows the following: > > snip > > I checked Xft.h and it's the same as the stock one from the XFree86 > distribution. Any ideas on what's causing these parse errors? >
Your Xft.h does not include freetype/freetype.h. Indeed, Seems that you use a very recent XFree. In 4.4.0-rc2 Xft.h, the freetype are included as: #include FT_FREETYPE_H and not as #include <freetype/freetype.h> FT_FREETYPE_H is defined in freetype/config/ftheader.h which is included (here) by Xft.h via ft2build.h. Seems that some old version of ft has no ft2build.h. Maybe 2 versions of freetype2 are installed on your machine (typically, one under /usr and an other one under /usr/X11R6) and this leads to various problems. You may try to use the --with-freetype-prefix= or the --with-freetype-exec-prefix= options to configure so that the good freetype2 includes are used. Regards, Olivier -- Visit the official FVWM web page at <URL: http://www.fvwm.org/>. To unsubscribe from the list, send "unsubscribe fvwm" in the body of a message to [EMAIL PROTECTED] To report problems, send mail to [EMAIL PROTECTED]
