summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.109.bb8
1 files changed, 6 insertions, 2 deletions
diff --git a/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.109.bb b/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.109.bb
index 2b572f7e2..e1cb3d4a5 100644
--- a/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.109.bb
+++ b/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.109.bb
@@ -23,9 +23,13 @@ DEPENDS = " \
23 23
24inherit pkgconfig autotools gettext texinfo mime mime-xdg 24inherit pkgconfig autotools gettext texinfo mime mime-xdg
25 25
26# depends on gtk+3 which has this restriction
27inherit features_check 26inherit features_check
28ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" 27# depends on gtk+3 which has this restriction
28# ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
29# but https://github.com/gtkwave/gtkwave/blob/f9d82a82aa3ddc30ca47984278371f62c9a3bd81/gtkwave3-gtk3/src/gtk23compat.h#L10
30# explicitly includes gdk/gdkwayland.h for gtk-3.22.26 and newer (oe-core currently has 3.24.29)
31# and it needs x11 as well for tk dependency (so it happends to be both GTK3DISTROFEATURES instead of either of them)
32REQUIRED_DISTRO_FEATURES = "wayland x11"
29 33
30EXTRA_OECONF = " \ 34EXTRA_OECONF = " \
31 --enable-gtk3 \ 35 --enable-gtk3 \