summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/mesa_20.0.2.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@cn.fujitsu.com>2020-03-24 23:47:52 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-03-29 12:05:31 +0100
commitd1b00626c33cd1bb90d6a4012fb8bfe562639c6f (patch)
tree173e0b5f95a6c5b6b78bd8d44be7cce100f2e056 /meta/recipes-graphics/mesa/mesa_20.0.2.bb
parent5faec8ffa14e589b946a58c0457aae63fbf2e6c1 (diff)
downloadpoky-d1b00626c33cd1bb90d6a4012fb8bfe562639c6f.tar.gz
mesa: upgrade 20.0.1 -> 20.0.2
(From OE-Core rev: ed500e9d2e7678290420bd0ee4d88eeba40bbb4a) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa_20.0.2.bb')
-rw-r--r--meta/recipes-graphics/mesa/mesa_20.0.2.bb25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa_20.0.2.bb b/meta/recipes-graphics/mesa/mesa_20.0.2.bb
new file mode 100644
index 0000000000..56ee28c870
--- /dev/null
+++ b/meta/recipes-graphics/mesa/mesa_20.0.2.bb
@@ -0,0 +1,25 @@
1require ${BPN}.inc
2
3SRC_URI = "https://mesa.freedesktop.org/archive/mesa-${PV}.tar.xz \
4 file://0001-meson.build-check-for-all-linux-host_os-combinations.patch \
5 file://0002-meson.build-make-TLS-ELF-optional.patch \
6 file://0003-Allow-enable-DRI-without-DRI-drivers.patch \
7 file://0004-Revert-mesa-Enable-asm-unconditionally-now-that-gen_.patch \
8 file://0005-vc4-use-intmax_t-for-formatted-output-of-timespec-me.patch \
9 file://0001-meson-misdetects-64bit-atomics-on-mips-clang.patch \
10 "
11
12SRC_URI[md5sum] = "31ca59cd92c38cb8e1a58b62b01c3e08"
13SRC_URI[sha256sum] = "aa54f1cb669550606aab8ceb475105d15aeb814fca5a778ce70d0fd10e98e86f"
14
15UPSTREAM_CHECK_GITTAGREGEX = "mesa-(?P<pver>\d+(\.\d+)+)"
16
17CFLAGS += "-fcommon"
18
19#because we cannot rely on the fact that all apps will use pkgconfig,
20#make eglplatform.h independent of MESA_EGL_NO_X11_HEADER
21do_install_append() {
22 if ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then
23 sed -i -e 's/^#elif defined(__unix__) && defined(EGL_NO_X11)$/#elif defined(__unix__) \&\& defined(EGL_NO_X11) || ${@bb.utils.contains('PACKAGECONFIG', 'x11', '0', '1', d)}/' ${D}${includedir}/EGL/eglplatform.h
24 fi
25}