gl: x11-xcb is not a required dependency
authorTim-Philipp Müller <tim@centricular.com>
Fri, 11 Nov 2016 01:05:55 +0000 (01:05 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Fri, 11 Nov 2016 01:06:23 +0000 (01:06 +0000)
Don't fail if it's not found..

gst-libs/gst/gl/meson.build

index 0a0cd65..59c68d0 100644 (file)
@@ -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',