diff options
Diffstat (limited to 'meta-oe/recipes-devtools/tcltk/tk8/fix-xft.diff')
-rw-r--r-- | meta-oe/recipes-devtools/tcltk/tk8/fix-xft.diff | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/tcltk/tk8/fix-xft.diff b/meta-oe/recipes-devtools/tcltk/tk8/fix-xft.diff new file mode 100644 index 0000000000..c1e2f7344e --- /dev/null +++ b/meta-oe/recipes-devtools/tcltk/tk8/fix-xft.diff | |||
@@ -0,0 +1,18 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | --- a/unix/configure.in 2010-05-19 13:29:03.000000000 +0200 | ||
4 | +++ b/unix/configure.in 2010-05-19 13:42:05.000000000 +0200 | ||
5 | @@ -526,13 +526,9 @@ | ||
6 | found_xft="yes" | ||
7 | dnl make sure package configurator (xft-config or pkg-config | ||
8 | dnl says that xft is present. | ||
9 | - XFT_CFLAGS=`xft-config --cflags 2>/dev/null` || found_xft="no" | ||
10 | - XFT_LIBS=`xft-config --libs 2>/dev/null` || found_xft="no" | ||
11 | - if test "$found_xft" = "no" ; then | ||
12 | found_xft=yes | ||
13 | XFT_CFLAGS=`pkg-config --cflags xft fontconfig 2>/dev/null` || found_xft="no" | ||
14 | XFT_LIBS=`pkg-config --libs xft fontconfig 2>/dev/null` || found_xft="no" | ||
15 | - fi | ||
16 | AC_MSG_RESULT([$found_xft]) | ||
17 | dnl make sure that compiling against Xft header file doesn't bomb | ||
18 | if test "$found_xft" = "yes" ; then | ||