mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
Fix zlib detection when there is no pkg-config file
This commit is contained in:
parent
e0268c02ab
commit
7298139ba1
1 changed files with 8 additions and 2 deletions
|
@ -70,8 +70,14 @@ endif
|
|||
core_conf.set('HAVE_ISO_CODES', have_iso_codes)
|
||||
|
||||
# could drop optional zlib dep and use g_zlib_decompressor_new()
|
||||
zlib_dep = dependency('zlib', required: false, fallback: ['zlib', 'zlib_dep'])
|
||||
core_conf.set('HAVE_ZLIB', zlib_dep.found())
|
||||
zlib_dep = dependency('zlib', required : false)
|
||||
if not zlib_dep.found()
|
||||
zlib_dep = cc.find_library('z', required : false)
|
||||
if not zlib_dep.found()
|
||||
zlib_dep = subproject('zlib').get_variable('zlib_dep')
|
||||
endif
|
||||
endif
|
||||
core_conf.set('HAVE_ZLIB', true)
|
||||
|
||||
tag_deps = [gst_base_dep, libm, zlib_dep]
|
||||
gsttag = library('gsttag-@0@'.format(api_version),
|
||||
|
|
Loading…
Reference in a new issue