After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 88363 - pango xft check not picking up header
pango xft check not picking up header
Status: RESOLVED FIXED
Product: pango
Classification: Platform
Component: general
1.0.x
Other Mac OS
: Normal normal
: ---
Assigned To: Owen Taylor
Owen Taylor
Depends on:
Blocks: 80435
 
 
Reported: 2002-07-16 16:48 UTC by jacob berkman
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description jacob berkman 2002-07-16 16:48:49 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,
Comment 1 Owen Taylor 2002-07-16 18:47:34 UTC
Looks OK to commit to me. (I dont' think it's relevant
to HEAD, where we use pkg-config to find Xft.)
Comment 2 jacob berkman 2002-07-16 18:57:01 UTC
thanks...

2002-07-16  jacob berkman  <jacob@ximian.com>

        * configure.in: use $X_CFLAGS when looking for Xft headers
        (#88363)