diff options
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 | } | ||