diff options
author | Xiaofeng Yan <xiaofeng.yan@windriver.com> | 2012-01-12 15:34:23 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-16 12:24:55 +0000 |
commit | e2948feae83f75bda5ef88dcc375dc6481506a37 (patch) | |
tree | 08a2fbc9a5623282ae406eec18dff2d8fb6699b4 /meta/recipes-graphics/cairo | |
parent | beb601f79ff0cc98ae546344a89f6c64997c8658 (diff) | |
download | poky-e2948feae83f75bda5ef88dcc375dc6481506a37.tar.gz |
cairo.inc: Change configuration of directfb to gtk-directfb
"direcdtfb" is a wrong configuration in PACKAGECONFIG. It should be "gtk-directfb".
PACKAGECONFIG can't select directfb as backend rightly, or else.
[YOCTO #1900]
(From OE-Core rev: 458ffd3f47b99ee89e6cb8015d68f9820f86e3e7)
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/cairo')
-rw-r--r-- | meta/recipes-graphics/cairo/cairo.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/cairo/cairo.inc b/meta/recipes-graphics/cairo/cairo.inc index 5f8f7b6890..930675d0ed 100644 --- a/meta/recipes-graphics/cairo/cairo.inc +++ b/meta/recipes-graphics/cairo/cairo.inc | |||
@@ -13,7 +13,7 @@ LICENSE = "MPL-1 & LGPLv2.1" | |||
13 | X11DEPENDS = "virtual/libx11 libsm libxrender" | 13 | X11DEPENDS = "virtual/libx11 libsm libxrender" |
14 | DEPENDS = "libpng fontconfig pixman glib-2.0" | 14 | DEPENDS = "libpng fontconfig pixman glib-2.0" |
15 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \ | 15 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \ |
16 | ${@base_contains('DISTRO_FEATURES', 'gtk-directfb', 'directfb', '', d)}" | 16 | ${@base_contains('DISTRO_FEATURES', 'gtk-directfb', 'gtk-directfb', '', d)}" |
17 | PACKAGECONFIG[x11] = "--with-x=yes,--without-x,${X11DEPENDS}" | 17 | PACKAGECONFIG[x11] = "--with-x=yes,--without-x,${X11DEPENDS}" |
18 | PACKAGECONFIG[gtk-directfb] = "--enable-directfb=yes,,directfb" | 18 | PACKAGECONFIG[gtk-directfb] = "--enable-directfb=yes,,directfb" |
19 | 19 | ||