mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
meson: matroska: Ensure header dependency not only library
Library existence does not guarantee header.
This commit is contained in:
parent
2476e9e4ae
commit
7fb8abf8bb
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ matroska_sources = [
|
|||
]
|
||||
|
||||
bz2_dep = cc.find_library('bz2', required : get_option('bz2'))
|
||||
cdata.set('HAVE_BZ2', bz2_dep.found())
|
||||
cdata.set('HAVE_BZ2', bz2_dep.found() and cc.has_header('bzlib.h'))
|
||||
|
||||
gstmatroska = library('gstmatroska',
|
||||
matroska_sources,
|
||||
|
|
Loading…
Reference in a new issue