mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
Fix checking for libxml2, it's not required
This commit is contained in:
parent
20cca3f10b
commit
1f847ffbf4
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ if not get_option('disable_gst_devtools')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if not get_option('disable_gst_editing_services')
|
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']
|
subprojects += ['gst-editing-services']
|
||||||
else
|
else
|
||||||
message('WARNING: not building gst-editing-services module, missing libxml-2.0')
|
message('WARNING: not building gst-editing-services module, missing libxml-2.0')
|
||||||
|
|
Loading…
Reference in a new issue