From 0aae67d261f6986bab563989c773fd8c0a3c4171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 11 Nov 2016 01:05:55 +0000 Subject: [PATCH] gl: x11-xcb is not a required dependency Don't fail if it's not found.. --- gst-libs/gst/gl/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/gl/meson.build b/gst-libs/gst/gl/meson.build index 0a0cd65877..59c68d0a2f 100644 --- a/gst-libs/gst/gl/meson.build +++ b/gst-libs/gst/gl/meson.build @@ -439,7 +439,7 @@ if need_platform_glx == 'yes' endif if need_win_x11 != 'no' - xcb_dep = dependency('x11-xcb') + xcb_dep = dependency('x11-xcb', required : false) if x11_dep.found() and xcb_dep.found() gl_sources += [ 'x11/gstgldisplay_x11.c',