Fix checking for libxml2, it's not required

This commit is contained in:
Tim-Philipp Müller 2017-10-07 15:42:59 +01:00
parent 20cca3f10b
commit 1f847ffbf4

View 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')