mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Commit 00fb3a57cb added a wlroots ->
libgbm dependency, but forgot to propagate it to package/cage.
Fixes:
https://autobuild.buildroot.net/results/dc185c3d4886e9cfd9e6f46b50b864e5b2f28605/
Cc: Raphael Pavlidis <raphael.pavlidis@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
25 lines
783 B
Plaintext
25 lines
783 B
Plaintext
comment "cage needs udev, EGL, OpenGL ES and GBM support"
|
|
depends on !BR2_PACKAGE_HAS_LIBEGL || \
|
|
!BR2_PACKAGE_HAS_LIBGLES || \
|
|
!BR2_PACKAGE_HAS_LIBGBM || \
|
|
!BR2_PACKAGE_HAS_UDEV
|
|
|
|
comment "cage needs a toolchain w/ threads, dynamic library"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_CAGE
|
|
bool "cage"
|
|
depends on !BR2_STATIC_LIBS # wlroots
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # wlroots
|
|
depends on BR2_PACKAGE_HAS_LIBEGL # wlroots
|
|
depends on BR2_PACKAGE_HAS_LIBGLES # wlroots
|
|
depends on BR2_PACKAGE_HAS_LIBGBM # wlroots
|
|
depends on BR2_PACKAGE_HAS_UDEV # wlroots
|
|
select BR2_PACKAGE_WLROOTS
|
|
help
|
|
Kiosk compositor for Wayland, which displays a single
|
|
maximized application at a time.
|
|
|
|
https://www.hjdskes.nl/projects/cage/
|