summaryrefslogtreecommitdiffstats
path: root/meta-gnome
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2024-11-07 19:51:42 -0800
committerKhem Raj <raj.khem@gmail.com>2024-11-19 13:50:57 -0800
commitcdc82b14a9c60743b6dd194db277ca9b67e610f2 (patch)
treedc62eee7ef1d9118e40f5ecba25cf5121681baf1 /meta-gnome
parent4b953a7d64fdc214d122367b403a3a54e78c40d1 (diff)
downloadmeta-openembedded-cdc82b14a9c60743b6dd194db277ca9b67e610f2.tar.gz
grilo-plugins: consider opengl distro feature for default PACKAGECONFIG
gnome-online-accounts requires opengl by default, so lua-factory PACKAGECONFIG should rely on opengl by default. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-gnome')
-rw-r--r--meta-gnome/recipes-gnome/grilo/grilo-plugins_0.3.16.bb5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-gnome/recipes-gnome/grilo/grilo-plugins_0.3.16.bb b/meta-gnome/recipes-gnome/grilo/grilo-plugins_0.3.16.bb
index b0516be3da..a1d2262cae 100644
--- a/meta-gnome/recipes-gnome/grilo/grilo-plugins_0.3.16.bb
+++ b/meta-gnome/recipes-gnome/grilo/grilo-plugins_0.3.16.bb
@@ -15,7 +15,10 @@ inherit gnomebase gnome-help vala
15SRC_URI += "file://0001-Avoid-running-trackertestutils.patch" 15SRC_URI += "file://0001-Avoid-running-trackertestutils.patch"
16SRC_URI[archive.sha256sum] = "fe6f4dbe586c6b8ba2406394e202f22d009d642a96eb3a54f32f6a21d084cdcb" 16SRC_URI[archive.sha256sum] = "fe6f4dbe586c6b8ba2406394e202f22d009d642a96eb3a54f32f6a21d084cdcb"
17 17
18PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'gobject-introspection-data', 'tracker', '', d)} lua-factory" 18# gnome-online-accounts requires opengl by default, so lua-factory PACKAGECONFIG relies on opengl by default.
19PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'gobject-introspection-data', 'tracker', '', d)} \
20 ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'lua-factory', '', d)} \
21 "
19PACKAGECONFIG[tracker] = "-Denable-tracker3=yes,-Denable-tracker3=no,tinysparql,localsearch" 22PACKAGECONFIG[tracker] = "-Denable-tracker3=yes,-Denable-tracker3=no,tinysparql,localsearch"
20PACKAGECONFIG[lua-factory] = "-Denable-lua-factory=yes,-Denable-lua-factory=no,lua libarchive json-glib gnome-online-accounts" 23PACKAGECONFIG[lua-factory] = "-Denable-lua-factory=yes,-Denable-lua-factory=no,lua libarchive json-glib gnome-online-accounts"
21 24