mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
- add a PACKAGECONFIG for perfetto support (From OE-Core rev: cbcaff0b4cc349706b9847f4262746b43adba209) Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
476 B
BlitzBasic
14 lines
476 B
BlitzBasic
require mesa.inc
|
|
|
|
SUMMARY += " (OpenGL only, no EGL/GLES)"
|
|
|
|
PROVIDES = "virtual/libgl virtual/mesa"
|
|
|
|
S = "${WORKDIR}/mesa-${PV}"
|
|
|
|
# At least one DRI rendering engine is required to build mesa.
|
|
# When no X11 is available, use osmesa for the rendering engine.
|
|
PACKAGECONFIG ??= "opengl ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', 'osmesa gallium', d)}"
|
|
PACKAGECONFIG:class-target = "opengl ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', 'osmesa gallium', d)}"
|
|
|