From 1f847ffbf47e5dd229673e2957182261c8eeb0fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 7 Oct 2017 15:42:59 +0100 Subject: [PATCH] Fix checking for libxml2, it's not required --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index d46b3d4bee..f661c6f888 100644 --- a/meson.build +++ b/meson.build @@ -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')