From 624f2e658d09d13cb9e61a8a52f2227d2a60d7f7 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 23 Jul 2022 22:12:22 +0200 Subject: [PATCH] package/glslsandbox-player: drop BR2_TOOLCHAIN_HAS_THREADS workaround We used to have a BR2_TOOLCHAIN_HAS_THREADS dependency at the top-level BR2_PACKAGE_GLSLSANDBOX_PLAYER option to make sure that at least one of them windowing system was selectable. However, thanks to the recent introduction of the support for the null windowing system, we now have a windowing system that doesn't require any special feature, so we can drop this dependency from the top-level option. Signed-off-by: Thomas Petazzoni --- package/glslsandbox-player/Config.in | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/package/glslsandbox-player/Config.in b/package/glslsandbox-player/Config.in index 19536c8546..2b049357a9 100644 --- a/package/glslsandbox-player/Config.in +++ b/package/glslsandbox-player/Config.in @@ -2,9 +2,6 @@ config BR2_PACKAGE_GLSLSANDBOX_PLAYER bool "glslsandbox-player" depends on BR2_PACKAGE_HAS_LIBEGL depends on BR2_PACKAGE_HAS_LIBGLES - # Doesn't really depend on threads, but this makes sure we have at least - # one native windowing system available, and is good enough in practice. - depends on BR2_TOOLCHAIN_HAS_THREADS help GLSL Sandbox standalone player allow one to run and render (most of) nice shaders available online on the @@ -117,6 +114,5 @@ endif endif -comment "glslsandbox-player needs a toolchain w/ threads and an openGL ES and EGL driver" - depends on !BR2_TOOLCHAIN_HAS_THREADS || \ - !BR2_PACKAGE_HAS_LIBEGL || !BR2_PACKAGE_HAS_LIBGLES +comment "glslsandbox-player needs openGL ES and EGL driver" + depends on !BR2_PACKAGE_HAS_LIBEGL || !BR2_PACKAGE_HAS_LIBGLES