summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/mesa_17.0.6.bb
diff options
context:
space:
mode:
authorHuang Qiyu <huangqy.fnst@cn.fujitsu.com>2017-05-24 17:08:58 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-25 23:59:32 +0100
commit8759812810afeef5c296836fe4192fe2bbfe01d9 (patch)
treea6ffb28e6c2cbabc7a21e0d23583148aa6b4200f /meta/recipes-graphics/mesa/mesa_17.0.6.bb
parent3c919af302944eccae6b1ac196e6642cd5e268db (diff)
downloadpoky-8759812810afeef5c296836fe4192fe2bbfe01d9.tar.gz
mesa: 17.0.4 -> 17.0.6
Upgrade mesa from 17.0.4 to 17.0.6. (From OE-Core rev: 53b58373c7f64fe5b03f1c90b2a0ec75d6c231a5) Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa_17.0.6.bb')
-rw-r--r--meta/recipes-graphics/mesa/mesa_17.0.6.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa_17.0.6.bb b/meta/recipes-graphics/mesa/mesa_17.0.6.bb
new file mode 100644
index 0000000000..3f98271f21
--- /dev/null
+++ b/meta/recipes-graphics/mesa/mesa_17.0.6.bb
@@ -0,0 +1,18 @@
1require ${BPN}.inc
2
3SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/mesa-${PV}.tar.xz \
4 file://replace_glibc_check_with_linux.patch \
5 file://disable-asm-on-non-gcc.patch \
6 file://0001-Use-wayland-scanner-in-the-path.patch \
7"
8
9SRC_URI[md5sum] = "77ea38dc0ab899864b06ea2941ac31a4"
10SRC_URI[sha256sum] = "89ecf3bcd0f18dcca5aaa42bf36bb52a2df33be89889f94aaaad91f7a504a69d"
11
12#because we cannot rely on the fact that all apps will use pkgconfig,
13#make eglplatform.h independent of MESA_EGL_NO_X11_HEADER
14do_install_append() {
15 if ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then
16 sed -i -e 's/^#if defined(MESA_EGL_NO_X11_HEADERS)$/#if defined(MESA_EGL_NO_X11_HEADERS) || ${@bb.utils.contains('PACKAGECONFIG', 'x11', '0', '1', d)}/' ${D}${includedir}/EGL/eglplatform.h
17 fi
18}