summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/mesa_17.0.0.bb
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2017-02-28 11:26:56 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-04 23:18:19 +0000
commite4ffcaea2282f08bf7a7079330b5102ef7d26128 (patch)
treeee63f3ee4357662fc4624283271632d78c57a3c5 /meta/recipes-graphics/mesa/mesa_17.0.0.bb
parent851bdd2d69ac505fa64044bda84518585ae4200f (diff)
downloadpoky-e4ffcaea2282f08bf7a7079330b5102ef7d26128.tar.gz
mesa: Upgrade 13.0.4 -> 17.0.0
17.0.0 is considered a development release: 17.0.1 is expected to be the first stable in this series. Typically the .1 release comes about two weeks after .0. * New feature release with lots of changes * Versioning change (17 as in 2017, no longer relates to GL bumps) * OpenGL 4.5 support on Haswell * mesa now implements its own sha1 instead of having 5 configurable sha-providers * Remove libxvmcsoftpipe packaging, the library hasn't existed since 2013 (From OE-Core rev: be95558834eed0564ec00c65ac8067c7c65006c5) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.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.0.bb')
-rw-r--r--meta/recipes-graphics/mesa/mesa_17.0.0.bb17
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa_17.0.0.bb b/meta/recipes-graphics/mesa/mesa_17.0.0.bb
new file mode 100644
index 0000000000..6576e3c62b
--- /dev/null
+++ b/meta/recipes-graphics/mesa/mesa_17.0.0.bb
@@ -0,0 +1,17 @@
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"
8SRC_URI[md5sum] = "932e4171a86b14940c06812356486155"
9SRC_URI[sha256sum] = "39db3d59700159add7f977307d12a7dfe016363e760ad82280ac4168ea668481"
10
11#because we cannot rely on the fact that all apps will use pkgconfig,
12#make eglplatform.h independent of MESA_EGL_NO_X11_HEADER
13do_install_append() {
14 if ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then
15 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
16 fi
17}