--uAKRQypu60I7Lcqm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi everyone, I've built Noah's autofooed render, xrender and xft from CVS with fontconfig 2.1.94 on HP-UX. Worked a treat, thanks very much Noah! GTK+ builds against it, and I've run gtk-demo successfully (remotely though, to my XFree86 4.3 server -> the HP-UX box doesn't have a graphics card). Here's a quick patch to say thanks! (against current Xrender CVS) - Jeff -- linux.conf.au 2004: Adelaide, Australia http://lca2004.linux.org.au/ Wars end, love lasts. --uAKRQypu60I7Lcqm Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="xrender-includes-fix.diff" Index: Makefile.am =================================================================== RCS file: /local/src/CVS/Xrender/Makefile.am,v retrieving revision 1.1 diff -u -H -d -r1.1 Makefile.am --- Makefile.am 17 Apr 2003 22:49:21 -0000 1.1 +++ Makefile.am 19 Apr 2003 08:59:27 -0000 @@ -38,7 +38,8 @@ Tri.c \ Xrender.c \ Xrender.h \ - Xrenderint.h + Xrenderint.h \ + region.h libXrender_la_LIBADD = @X_LIBS@ Index: Xrenderint.h =================================================================== RCS file: /local/src/CVS/Xrender/Xrenderint.h,v retrieving revision 1.5 diff -u -H -d -r1.5 Xrenderint.h --- Xrenderint.h 17 Apr 2003 22:49:21 -0000 1.5 +++ Xrenderint.h 19 Apr 2003 08:59:28 -0000 @@ -32,7 +32,7 @@ #include <X11/Xutil.h> #include <X11/extensions/Xext.h> #include <X11/extensions/renderproto.h> -#include "extutil.h" +#include <X11/extensions/extutil.h> #include "Xrender.h" typedef struct { --uAKRQypu60I7Lcqm--