mirror of
https://github.com/libretro/RetroArch
synced 2025-03-31 10:20:41 +00:00
Merge pull request #3798 from heuripedes/master
(qb) Try to find -lz if the zlib package doesnt exist
This commit is contained in:
commit
aa049e55da
@ -288,10 +288,13 @@ if [ "$HAVE_OPENGL" != 'no' ] && [ "$HAVE_OPENGLES" != 'yes' ]; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$OS" = 'Darwin' ]; then
|
if [ "$HAVE_ZLIB" != 'no' ]; then
|
||||||
check_lib ZLIB "-lz"
|
|
||||||
else
|
|
||||||
check_pkgconf ZLIB zlib
|
check_pkgconf ZLIB zlib
|
||||||
|
|
||||||
|
if [ "$HAVE_ZLIB" = 'no' ]; then
|
||||||
|
HAVE_ZLIB='auto'
|
||||||
|
check_lib ZLIB '-lz'
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$HAVE_THREADS" != 'no' ]; then
|
if [ "$HAVE_THREADS" != 'no' ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user