mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-02-06 01:10:14 +00:00
23 lines
521 B
Plaintext
23 lines
521 B
Plaintext
dnl
|
|
dnl Check for zlib
|
|
dnl
|
|
|
|
PKG_CHECK_EXISTS([zlib],[zlib_found=yes],[zlib_found=no])
|
|
if test x"$zlib_found" = xyes; then
|
|
PKG_CHECK_MODULES([ZLIB],[zlib],[zlib_found=yes])
|
|
else
|
|
AC_MSG_CHECKING(for ZLIB)
|
|
save_LIBS="$LIBS"
|
|
LIBS="$LIBS -lz"
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM(
|
|
[[#include <zlib.h>]],
|
|
[[inflate(0, 0);]])],
|
|
[zlib_found=yes; ZLIB_LIBS=-lz],[])
|
|
LIBS="$save_LIBS"
|
|
AC_MSG_RESULT($zlib_found)
|
|
fi
|
|
|
|
if test x"$zlib_found" != xyes; then
|
|
AC_MSG_ERROR([Could not find the zlib library])
|
|
fi
|