From 4e0d68ded76f948b954cc204fa6b8151e263d4e4 Mon Sep 17 00:00:00 2001 From: Jinkyu Yi Date: Sun, 14 Feb 2016 18:09:01 +0900 Subject: [PATCH] zlib: Fix package name in error message if zlib was not found. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 186e688d0..0c616a9cd 100644 --- a/configure.ac +++ b/configure.ac @@ -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`