diff options
author | Valentin Popa <valentin.popa@intel.com> | 2014-02-18 13:32:16 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-20 14:28:10 +0000 |
commit | 0bdf56fdcd15aa73b290742dd6e2b54b4af3196f (patch) | |
tree | 182d0556f7554807b7027a7b0218b7069966df67 /meta/recipes-graphics/mesa/mesa_git.bb | |
parent | e49eff1f9afad2b30e470afd12282ffc8362098d (diff) | |
download | poky-0bdf56fdcd15aa73b290742dd6e2b54b4af3196f.tar.gz |
mesa: upgrade to 9.2.5
tested on qemux86, genericx86 for core-image-sato
and core-image-weston.
(From OE-Core rev: a5ebdb6ad8e4f94ac819275d55575230e057e4ae)
Signed-off-by: Valentin Popa <valentin.popa@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa_git.bb')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa_git.bb | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/meta/recipes-graphics/mesa/mesa_git.bb b/meta/recipes-graphics/mesa/mesa_git.bb index 19d3e70823..0abedbcb83 100644 --- a/meta/recipes-graphics/mesa/mesa_git.bb +++ b/meta/recipes-graphics/mesa/mesa_git.bb | |||
@@ -5,8 +5,8 @@ DEFAULT_PREFERENCE = "-1" | |||
5 | LIC_FILES_CHKSUM = "file://docs/license.html;md5=f69a4626e9efc40fa0d3cc3b02c9eacf" | 5 | LIC_FILES_CHKSUM = "file://docs/license.html;md5=f69a4626e9efc40fa0d3cc3b02c9eacf" |
6 | 6 | ||
7 | PR = "${INC_PR}.0" | 7 | PR = "${INC_PR}.0" |
8 | SRCREV = "8f0742051e8501e737affb392996aef172034ca8" | 8 | SRCREV = "4636e87191fddd492ed8c61ba61faf4b2d89b2e4" |
9 | PV = "9.2.2+git${SRCPV}" | 9 | PV = "9.2.5+git${SRCPV}" |
10 | 10 | ||
11 | SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa \ | 11 | SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa \ |
12 | file://0002-pipe_loader_sw-include-xlib_sw_winsys.h-only-when-HA.patch \ | 12 | file://0002-pipe_loader_sw-include-xlib_sw_winsys.h-only-when-HA.patch \ |
@@ -14,3 +14,11 @@ SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa \ | |||
14 | " | 14 | " |
15 | 15 | ||
16 | S = "${WORKDIR}/git" | 16 | S = "${WORKDIR}/git" |
17 | |||
18 | #because we cannot rely on the fact that all apps will use pkgconfig, | ||
19 | #make eglplatform.h independent of MESA_EGL_NO_X11_HEADER | ||
20 | do_install_append() { | ||
21 | if ${@base_contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then | ||
22 | sed -i -e 's/^#ifdef MESA_EGL_NO_X11_HEADERS/#if ${@base_contains('DISTRO_FEATURES', 'x11', '0', '1', d)}/' ${D}${includedir}/EGL/eglplatform.h | ||
23 | fi | ||
24 | } | ||