mirror of
https://git.yoctoproject.org/poky
synced 2026-03-10 17:29:40 +01:00
Without these changes mesa_git.bb can't be enabled as the PREFERRED_VERSION due to build breakage. (From OE-Core rev: 04f48ad3fab4e21a23c46b90f6a62269a1cf1ee7) Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
844 B
BlitzBasic
24 lines
844 B
BlitzBasic
require ${BPN}.inc
|
|
|
|
DEFAULT_PREFERENCE = "-1"
|
|
|
|
LIC_FILES_CHKSUM = "file://docs/license.html;md5=6a23445982a7a972ac198e93cc1cb3de"
|
|
|
|
SRCREV = "0028eb1083e6adc110a23a5f02c993cda217067a"
|
|
PV = "10.1.3+git${SRCPV}"
|
|
|
|
SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa;branch=10.1 \
|
|
file://0002-pipe_loader_sw-include-xlib_sw_winsys.h-only-when-HA.patch \
|
|
file://0006-fix-out-of-tree-egl.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
#because we cannot rely on the fact that all apps will use pkgconfig,
|
|
#make eglplatform.h independent of MESA_EGL_NO_X11_HEADER
|
|
do_install_append() {
|
|
if ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then
|
|
sed -i -e 's/^#ifdef MESA_EGL_NO_X11_HEADERS/#if ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '0', '1', d)}/' ${D}${includedir}/EGL/eglplatform.h
|
|
fi
|
|
}
|