Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | require ${BPN}.inc |
| 2 | |
| 3 | SRC_URI = "https://mesa.freedesktop.org/archive/mesa-${PV}.tar.xz \ |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 4 | file://0001-meson.build-check-for-all-linux-host_os-combinations.patch \ |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 5 | file://0002-meson.build-make-TLS-GLX-optional-again.patch \ |
| 6 | file://0003-Allow-enable-DRI-without-DRI-drivers.patch \ |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 7 | " |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 8 | |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 9 | SRC_URI[md5sum] = "090cd351cf938fc1729dee983520216a" |
| 10 | SRC_URI[sha256sum] = "2a6c3af3a803389183168e449c536304cf03e0f82c4c9333077933543b9d02f3" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 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 |
| 14 | do_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 | } |