summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2024-12-17 12:34:27 -0800
committerKhem Raj <raj.khem@gmail.com>2024-12-19 09:41:28 -0800
commitbd8748209b4f0637a8f659e18039de49db3f4757 (patch)
tree27ad54983acba77e0dcb062ae57e42076794cc29
parent0c59f9fc3607f544d6146157a2b3de4b18fc48e8 (diff)
downloadmeta-openembedded-bd8748209b4f0637a8f659e18039de49db3f4757.tar.gz
libpeas: Disable lua support on architectures without luajit port
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-gnome/recipes-gnome/libpeas/libpeas_2.0.5.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gnome/libpeas/libpeas_2.0.5.bb b/meta-gnome/recipes-gnome/libpeas/libpeas_2.0.5.bb
index 8c7d364765..557831da6e 100644
--- a/meta-gnome/recipes-gnome/libpeas/libpeas_2.0.5.bb
+++ b/meta-gnome/recipes-gnome/libpeas/libpeas_2.0.5.bb
@@ -11,6 +11,11 @@ SRC_URI += "file://disable-lgi-check.patch"
11SRC_URI[archive.sha256sum] = "376f2f73d731b54e13ddbab1d91b6382cf6a980524def44df62add15489de6dd" 11SRC_URI[archive.sha256sum] = "376f2f73d731b54e13ddbab1d91b6382cf6a980524def44df62add15489de6dd"
12 12
13PACKAGECONFIG ?= "python3 gjs lua51 ${@bb.utils.contains('DISTRO_FEATURES', 'gobject-introspection', 'vala', '', d)}" 13PACKAGECONFIG ?= "python3 gjs lua51 ${@bb.utils.contains('DISTRO_FEATURES', 'gobject-introspection', 'vala', '', d)}"
14PACKAGECONFIG:remove:riscv32 = "lua51"
15PACKAGECONFIG:remove:riscv64 = "lua51"
16PACKAGECONFIG:remove:powerpc64 = "lua51"
17PACKAGECONFIG:remove:powerpc64le = "lua51"
18
14PACKAGECONFIG[python3] = "-Dpython3=true,-Dpython3=false,python3-pygobject,python3-pygobject" 19PACKAGECONFIG[python3] = "-Dpython3=true,-Dpython3=false,python3-pygobject,python3-pygobject"
15PACKAGECONFIG[gjs] = "-Dgjs=true,-Dgjs=false,gjs mozjs-128" 20PACKAGECONFIG[gjs] = "-Dgjs=true,-Dgjs=false,gjs mozjs-128"
16PACKAGECONFIG[lua51] = "-Dlua51=true,-Dlua51=false,luajit luajit-native,lua-lgi" 21PACKAGECONFIG[lua51] = "-Dlua51=true,-Dlua51=false,luajit luajit-native,lua-lgi"