diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2024-11-07 19:51:40 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-11-19 13:50:57 -0800 |
commit | b81c9ea11cd6be9392e2bfb5cfd185ee7ee44faa (patch) | |
tree | bdf82892ba087bedade695057db9d152b02c0ff2 | |
parent | 6648a434d56ee4c87f7758602a7f7efa09bfddef (diff) | |
download | meta-openembedded-b81c9ea11cd6be9392e2bfb5cfd185ee7ee44faa.tar.gz |
libspelling: require opengl distro feature
The gkt4 in DEPENDS has 'opengl' in its REQUIRED_DISTRO_FEATURES,
so libspelling also needs to set this.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-gnome/recipes-gnome/libspelling/libspelling_0.4.2.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-gnome/recipes-gnome/libspelling/libspelling_0.4.2.bb b/meta-gnome/recipes-gnome/libspelling/libspelling_0.4.2.bb index 833fe65c37..11ac086565 100644 --- a/meta-gnome/recipes-gnome/libspelling/libspelling_0.4.2.bb +++ b/meta-gnome/recipes-gnome/libspelling/libspelling_0.4.2.bb | |||
@@ -5,7 +5,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | |||
5 | 5 | ||
6 | DEPENDS = "enchant2 gtk4 gtksourceview5 icu" | 6 | DEPENDS = "enchant2 gtk4 gtksourceview5 icu" |
7 | 7 | ||
8 | inherit gnomebase pkgconfig gettext gi-docgen vala gobject-introspection | 8 | inherit gnomebase pkgconfig gettext gi-docgen vala gobject-introspection features_check |
9 | |||
10 | # reason: gtk4 requires opengl distro feature | ||
11 | REQUIRED_DISTRO_FEATURES = "opengl" | ||
9 | 12 | ||
10 | GIR_MESON_OPTION = '' | 13 | GIR_MESON_OPTION = '' |
11 | GIDOCGEN_MESON_OPTION = 'docs' | 14 | GIDOCGEN_MESON_OPTION = 'docs' |