mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
10 lines
169 B
Plaintext
10 lines
169 B
Plaintext
dnl
|
|
dnl Check for zlib
|
|
dnl
|
|
|
|
PKG_CHECK_MODULES([ZLIB],[zlib],[zlib_found=yes])
|
|
|
|
if test x"$zlib_found" != xyes; then
|
|
AC_MSG_ERROR([Could not find the zlib library])
|
|
fi
|