mirror of
https://git.yoctoproject.org/poky
synced 2026-03-09 00:39:39 +01:00
Changelog: ========= * add: Add av1 encode interfaces * add: VA/X11 VAAPI driver mapping for crocus DRI driver * doc: Add description of the fd management for surface importing * ci: fix freebsd build * meson: Copy public headers to build directory to support subproject (From OE-Core rev: 728d20b0bb3ee0728e40867c1590febf584c28a2) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
457 B
BlitzBasic
16 lines
457 B
BlitzBasic
require libva.inc
|
|
|
|
PACKAGECONFIG ??= " \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'glx', '', d)} \
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'x11 wayland', d)} \
|
|
"
|
|
|
|
PACKAGES =+ "${PN}-x11 ${PN}-glx ${PN}-wayland"
|
|
|
|
RDEPENDS:${PN}-x11 =+ "${PN}"
|
|
RDEPENDS:${PN}-glx =+ "${PN}-x11"
|
|
|
|
FILES:${PN}-x11 =+ "${libdir}/libva-x11*${SOLIBS}"
|
|
FILES:${PN}-glx =+ "${libdir}/libva-glx*${SOLIBS}"
|
|
FILES:${PN}-wayland =+ "${libdir}/libva-wayland*${SOLIBS}"
|