mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
pango: Add fallback dependency
When we'll depend on Meson >=0.55 this can be replaced by [provide] section in gst-build's pango.wrap file. The dependency variable name can also be dropped when pango is updated to use override_dependency: https://gitlab.gnome.org/GNOME/pango/-/merge_requests/250 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/844>
This commit is contained in:
parent
ebeded7339
commit
c66e276550
1 changed files with 3 additions and 1 deletions
|
@ -6,7 +6,9 @@ pango_sources = [
|
|||
'gsttimeoverlay.c',
|
||||
]
|
||||
|
||||
pango_dep = dependency('pangocairo', version : '>=1.22.0', required : get_option('pango'))
|
||||
pango_dep = dependency('pangocairo', version : '>=1.22.0', required : get_option('pango'),
|
||||
fallback: ['pango', 'libpangocairo_dep'],
|
||||
default_options: ['cairo=enabled'])
|
||||
|
||||
if pango_dep.found()
|
||||
gstpango = library('gstpango',
|
||||
|
|
Loading…
Reference in a new issue