summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/mesa_17.1.5.bb
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2017-07-17 15:40:49 -0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-07-21 22:51:38 +0100
commitd26aadc8e4741783640a914549cae26159271a29 (patch)
tree5fb5581e7749b3aa6b025d9d81251964c2454829 /meta/recipes-graphics/mesa/mesa_17.1.5.bb
parent7916a5f013290c8b3fbfa76aa4630aacbc76b908 (diff)
downloadpoky-d26aadc8e4741783640a914549cae26159271a29.tar.gz
mesa: Upgrade to 17.1.5 release
This is a stable bugfix release. Following upstream bugs were fixed: Bug 100242 - radeon buffer allocation failure during startup of Factorio Bug 101657 - strtod.c:32:10: fatal error: xlocale.h: No such file or directory Bug 101666 - bitfieldExtract is marked as a built-in function on OpenGL ES 3.0, but was added in OpenGL ES 3.1 Bug 101703 - No stencil buffer allocated when requested by GLUT Also, the following patches were included in this release and as such deleted: - etnaviv_fix-shader-miscompilation.patch (From OE-Core rev: 6e23b9589cd2e35d865f5d5e3469ad251c263af1) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> 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.1.5.bb')
-rw-r--r--meta/recipes-graphics/mesa/mesa_17.1.5.bb20
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa_17.1.5.bb b/meta/recipes-graphics/mesa/mesa_17.1.5.bb
new file mode 100644
index 0000000000..ddfcb371ec
--- /dev/null
+++ b/meta/recipes-graphics/mesa/mesa_17.1.5.bb
@@ -0,0 +1,20 @@
1require ${BPN}.inc
2
3SRC_URI = "https://mesa.freedesktop.org/archive/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 file://0002-hardware-gloat.patch \
8 file://0001-mapi-Only-install-khrplatform.h-with-EGL-or-GLES.patch \
9 file://vulkan-mkdir.patch \
10"
11SRC_URI[md5sum] = "6cf936fbcaadd98924298a7009e8265d"
12SRC_URI[sha256sum] = "378516b171712687aace4c7ea8b37c85895231d7a6d61e1e27362cf6034fded9"
13
14#because we cannot rely on the fact that all apps will use pkgconfig,
15#make eglplatform.h independent of MESA_EGL_NO_X11_HEADER
16do_install_append() {
17 if ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then
18 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
19 fi
20}