From 556bed08a15160d5a251bf67af83f6087252819e Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Wed, 23 Aug 2017 16:32:57 +1000 Subject: [PATCH] gl/meson: detect valid configuration from enabled apis/platform/winsys --- gst-libs/gst/gl/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst-libs/gst/gl/meson.build b/gst-libs/gst/gl/meson.build index 78bdfd010a..0c2c001533 100644 --- a/gst-libs/gst/gl/meson.build +++ b/gst-libs/gst/gl/meson.build @@ -591,15 +591,15 @@ endif # iOS, OS X, win32 specific support build_gstgl = true -if gl_lib_deps.length() == 0 +if enabled_gl_apis.length() == 0 message('No OpenGL API libraries found or requested') build_gstgl = false endif -if gl_platform_deps.length() == 0 +if enabled_gl_platforms.length() == 0 message('No OpenGL Platforms found or requested') build_gstgl = false endif -if gl_winsys_deps.length() == 0 +if enabled_gl_winsys.length() == 0 message('No OpenGL Window systems found or requested') build_gstgl = false endif