Fix checking for libxml2, it's not required
authorTim-Philipp Müller <tim@centricular.com>
Sat, 7 Oct 2017 14:42:59 +0000 (15:42 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 7 Oct 2017 14:42:59 +0000 (15:42 +0100)
meson.build

index d46b3d4..f661c6f 100644 (file)
@@ -76,7 +76,7 @@ if not get_option('disable_gst_devtools')
 endif
 
 if not get_option('disable_gst_editing_services')
-  if dependency('libxml-2.0').found()
+  if dependency('libxml-2.0', required : false).found()
     subprojects += ['gst-editing-services']
   else
     message('WARNING: not building gst-editing-services module, missing libxml-2.0')