From: Bill Hoffman Date: Tue, 14 Jul 2009 13:34:37 +0000 (+0000) Subject: ENH: do not report if zlib is not found as it still works X-Git-Tag: curl-7_19_6~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=600460ffc61c1b386e8bb5e744046e8e8af45900;p=curl ENH: do not report if zlib is not found as it still works --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 769f264e4..3663e454f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -258,7 +258,7 @@ set(HAVE_LIBZ OFF) set(HAVE_ZLIB_H OFF) set(HAVE_ZLIB OFF) if(CURL_ZLIB) # AND CURL_CONFIG_HAS_BEEN_RUN_BEFORE - find_package(ZLIB) + find_package(ZLIB QUIET) if(ZLIB_FOUND) set(HAVE_ZLIB_H ON) set(HAVE_ZLIB ON)