From 2782709d4dacf77ffeb5885c55c51a0266bc0ddc Mon Sep 17 00:00:00 2001 From: Armin Kuster Date: Mon, 23 Dec 2019 18:34:42 +0000 Subject: [PATCH] glfw: missing feature check. glfw depends on libglu which wont build if "opengl" is not in DISTRO_FEATURES Signed-off-by: Armin Kuster Signed-off-by: Khem Raj --- meta-oe/recipes-core/glfw/glfw_3.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-core/glfw/glfw_3.3.bb b/meta-oe/recipes-core/glfw/glfw_3.3.bb index da2bae37a5..0ceeba1f19 100644 --- a/meta-oe/recipes-core/glfw/glfw_3.3.bb +++ b/meta-oe/recipes-core/glfw/glfw_3.3.bb @@ -17,6 +17,6 @@ SRCREV = "d25248343e248337284dfbe5ecd1eddbd37ae66d" EXTRA_OECMAKE += "-DBUILD_SHARED_LIBS=ON" DEPENDS = "libpng libglu zlib libxrandr libxinerama libxi libxcursor" -REQUIRED_DISTRO_FEATURES = "x11" +REQUIRED_DISTRO_FEATURES = "x11 opengl" COMPATIBLE_HOST_libc-musl = "null"