GNOME Bugzilla – Bug 88363
pango xft check not picking up header
Last modified: 2004-12-22 21:47:04 UTC
pango wasn't finding that i have xft installed, this patch fixes it (on stable): --- configure.in 13 Jun 2002 21:10:29 -0000 1.109.2.3 +++ configure.in 16 Jul 2002 16:45:26 -0000 @@ -203,7 +203,7 @@ if test $have_x = true ; then if test $have_freetype = true ; then pango_save_cppflags="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $FREETYPE_CFLAGS" + CPPFLAGS="$CPPFLAGS $FREETYPE_CFLAGS $X_CFLAGS" AC_CHECK_LIB(Xrender, XRenderFindFormat, [AC_CHECK_LIB(Xft, XftFontOpen,
Looks OK to commit to me. (I dont' think it's relevant to HEAD, where we use pkg-config to find Xft.)
thanks... 2002-07-16 jacob berkman <jacob@ximian.com> * configure.in: use $X_CFLAGS when looking for Xft headers (#88363)