summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/libmatchbox/files/configure_fixes.patch
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2012-12-11 21:54:29 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-12-13 15:18:45 +0000
commitd7bca38b11f537405341c890526adf4891f23df4 (patch)
treed4ab57e23ee6360a309f1c3079a6f3fd79a01275 /meta/recipes-graphics/libmatchbox/files/configure_fixes.patch
parentebd508d88164da6ddb0bb978374fddaf321f0c65 (diff)
downloadpoky-d7bca38b11f537405341c890526adf4891f23df4.tar.gz
libmatchbox: upgrade to 1.10, drop git
All patches have been upstreamed so drop them, and as upstream isn't heavily developed drop the git recipe. (From OE-Core rev: 3465570601480d2e476e82b8b7254e94f87d2682) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/libmatchbox/files/configure_fixes.patch')
-rw-r--r--meta/recipes-graphics/libmatchbox/files/configure_fixes.patch81
1 files changed, 0 insertions, 81 deletions
diff --git a/meta/recipes-graphics/libmatchbox/files/configure_fixes.patch b/meta/recipes-graphics/libmatchbox/files/configure_fixes.patch
deleted file mode 100644
index 30fd67b02f..0000000000
--- a/meta/recipes-graphics/libmatchbox/files/configure_fixes.patch
+++ /dev/null
@@ -1,81 +0,0 @@
1---
2 configure.ac | 15 +++++++--------
3 libmb.pc.in | 2 +-
4 2 files changed, 8 insertions(+), 9 deletions(-)
5
6Upstream-Status: Inappropriate [configuration]
7
8Index: libmatchbox-1.9/configure.ac
9===================================================================
10--- libmatchbox-1.9.orig/configure.ac 2007-11-11 22:26:43.000000000 +0000
11+++ libmatchbox-1.9/configure.ac 2007-11-11 22:52:09.000000000 +0000
12@@ -84,6 +84,7 @@ if test $have_libx11pc = yes; then
13 xft_pkg=xft
14 SUPPORTS_XFT=1
15 AC_DEFINE(USE_XFT, [1], [Use Xft])
16+ XFT_REQUIRED="xft"
17 fi
18 # XXX : xau is missing from x11.pc - workaround is too add here
19 PKG_CHECK_MODULES(XLIBS, x11 xext $xft_pkg)
20@@ -108,6 +109,7 @@ if test x$enable_xft != xno; then
21 AC_DEFINE(USE_XFT, [1], [Use Xft])
22 SUPPORTS_XFT=1
23 AC_MSG_RESULT(yes)
24+ XFT_REQUIRED="xft"
25 else
26
27 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
28@@ -122,21 +124,17 @@ if test x$enable_xft != xno; then
29 AC_DEFINE(USE_XFT, [1], [Use Xft])
30 SUPPORTS_XFT=1
31 AC_MSG_RESULT(yes)
32+ MB_EXTRA_CFLAGS="$MB_EXTRA_CFLAGS $XFT_CFLAGS"
33+ MB_EXTRA_LIBS="$MB_EXTRA_LIBS $XFT_LIBS"
34 fi
35 fi
36 fi
37
38 XLIBS_CFLAGS="$XLIBS_CLAGS $XFT_CFLAGS"
39-XLIBS_LIBS="$X_LIBS $XFT_LIBS -lX11 -lXext"
40-
41-MB_EXTRA_LIBS="$MB_EXTRA_LIBS $XLIBS_LIBS"
42+XLIBS_LIBS="$XLIBS_LIBS $XFT_LIBS -lX11 -lXext"
43
44 fi
45
46-# do this here for freetype include
47-MB_EXTRA_CFLAGS="$MB_EXTRA_CFLAGS $XLIBS_CFLAGS"
48-
49-
50 dnl ------ Check for Pango ---------------------------------------------------
51
52 if test x$enable_pango != xno; then
53@@ -172,7 +170,7 @@ if test x$enable_png != xno; then
54 AC_DEFINE(USE_PNG, [1], [Use Png])
55 SUPPORTS_PNG=1
56 PNG_LIBS="-lpng -lz"
57- MB_EXTRA_LIBS="$MB_EXTRA_LIBS $XLIBS_LIBS $PNG_LIBS"
58+ MB_EXTRA_LIBS="$MB_EXTRA_LIBS $PNG_LIBS"
59 else
60 AC_MSG_WARN([*** Cannot find PNG, disabling support])
61 enable_png=no
62@@ -340,6 +338,7 @@ AC_SUBST(MB_EXTRA_CFLAGS)
63 AC_SUBST(XLIBS_REQUIRED)
64 AC_SUBST(PANGO_REQUIRED)
65 AC_SUBST(PNG_REQUIRED)
66+AC_SUBST(XFT_REQUIRED)
67
68 dnl ------ Below used for mbconfig.h ----------------------------------------
69
70Index: libmatchbox-1.9/libmb.pc.in
71===================================================================
72--- libmatchbox-1.9.orig/libmb.pc.in 2007-11-11 22:30:47.000000000 +0000
73+++ libmatchbox-1.9/libmb.pc.in 2007-11-11 22:31:01.000000000 +0000
74@@ -7,6 +7,6 @@ Name: libmb
75 Description: Utility Library used by Matchbox utilities.
76 Version: @VERSION@
77
78-Requires: @XLIBS_REQUIRED@ @PANGO_REQUIRED@ @PNG_REQUIRED@
79+Requires: @XLIBS_REQUIRED@ @PANGO_REQUIRED@ @PNG_REQUIRED@ @XFT_REQUIRED@
80 Libs: -L${libdir} -lmb @MB_EXTRA_LIBS@
81 Cflags: -I${includedir} @MB_EXTRA_CFLAGS@