mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
dash: Fallback to libxml2 subproject
This commit is contained in:
parent
96dc150b8b
commit
71d9e33085
1 changed files with 6 additions and 1 deletions
|
@ -4,7 +4,12 @@ dash_sources = [
|
||||||
'gstplugin.c',
|
'gstplugin.c',
|
||||||
]
|
]
|
||||||
|
|
||||||
xml2_dep = dependency('libxml-2.0', version : '>= 2.8', required : get_option('dash'))
|
xml2_dep = dependency('libxml-2.0',
|
||||||
|
version : '>= 2.8',
|
||||||
|
fallback : ['libxml2', 'xml2lib_dep'],
|
||||||
|
required : get_option('dash')
|
||||||
|
)
|
||||||
|
|
||||||
if xml2_dep.found()
|
if xml2_dep.found()
|
||||||
gstsouphttpsrc = library('gstdashdemux',
|
gstsouphttpsrc = library('gstdashdemux',
|
||||||
dash_sources,
|
dash_sources,
|
||||||
|
|
Loading…
Reference in a new issue