libpanel: require distro feature opengl

Make libpanel require distro feature opengl. Otherwise it fails
to build world if 'opengl' doesn't exist in DISTRO_FEATURES.
...
|ERROR: Nothing PROVIDES 'libadwaita' (but meta-openembedded/meta-gnome/recipes-gnome/libpanel/
libpanel_1.10.0.bb DEPENDS on or otherwise requires it)
|libadwaita was skipped: missing required distro feature 'opengl' (not in DISTRO_FEATURES)
|ERROR: Required build target 'meta-world-pkgdata' has no buildable providers.
|Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'libpanel', 'libadwaita']
...

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Hongxu Jia 2025-09-03 14:25:02 +08:00 committed by Khem Raj
parent 2de2663b8a
commit b00af83239
No known key found for this signature in database
GPG Key ID: BB053355919D3314

View File

@ -19,4 +19,4 @@ PACKAGECONFIG ?= ""
EXTRA_OEMESON += "-Ddocs=disabled -Dintrospection=enabled -Dvapi=false"
REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
REQUIRED_DISTRO_FEATURES = "gobject-introspection-data opengl"