zlib: Fix package name in error message if zlib was not found.

This commit is contained in:
Jinkyu Yi 2016-02-14 18:09:01 +09:00
parent 68e72f2693
commit 4e0d68ded7
No known key found for this signature in database
GPG Key ID: 7E5FB7C5CB6B5A06

View File

@ -1059,7 +1059,7 @@ if test "x$ac_found_zlib_header" = "xno" -o "x$ac_found_zlib_lib" = "xno" ; then
AC_MSG_RESULT(no)
AC_MSG_ERROR([
*** zlib was not found. You may want to get it from http://zlib.net/
*** or try to install libcurl-dev with your software package manager.])
*** or try to install zlib1g-dev with your software package manager.])
else
AC_MSG_RESULT(yes)
ZLIB_CFLAGS=`pkg-config zlib --cflags`