mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Meson: Remove unused zlib_libname variable
This commit is contained in:
parent
1e9060547d
commit
9229f96fd6
@ -1667,7 +1667,6 @@ endif
|
||||
|
||||
libm = cc.find_library('m', required : false)
|
||||
libffi_dep = dependency('libffi', version : '>= 3.0.0', fallback : ['libffi', 'ffi_dep'])
|
||||
zlib_libname = '-lz'
|
||||
if cc.get_id() != 'msvc'
|
||||
libz_dep = dependency('zlib', fallback : ['zlib', 'zlib_dep'])
|
||||
else
|
||||
@ -1679,13 +1678,9 @@ else
|
||||
# of using ZLib's win32/makefile.msc.
|
||||
if not libz_dep.found()
|
||||
libz_dep = cc.find_library('zlib1', required : false)
|
||||
if libz_dep.found()
|
||||
zlib_libname = '-lzlib1'
|
||||
else
|
||||
if not libz_dep.found()
|
||||
libz_dep = cc.find_library('zlib', required : false)
|
||||
if libz_dep.found()
|
||||
zlib_libname = '-lzlib'
|
||||
else
|
||||
if not libz_dep.found()
|
||||
libz_dep = subproject('zlib').get_variable('zlib_dep')
|
||||
endif
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user