From 8f9094248fd37ae9c742772ec8b129a97f4a4d12 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 28 Feb 2018 08:43:22 -0700 Subject: [PATCH] configure: improve static zlib package warning Signed-off-by: Jens Axboe --- configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 2b99ce9f..b6a9fb7e 100755 --- a/configure +++ b/configure @@ -2376,7 +2376,10 @@ if test "$disable_opt" = "yes" ; then output_sym "CONFIG_DISABLE_OPTIMIZATIONS" fi if test "$zlib" = "no" ; then - echo "Consider installing zlib-dev (zlib-devel or zlib-static), some fio features depend on it." + echo "Consider installing zlib-dev (zlib-devel, some fio features depend on it." + if test "$build_static" = "yes"; then + echo "Note that some distros have separate packages for static libraries." + fi fi if test "$cuda" = "yes" ; then output_sym "CONFIG_CUDA" -- 2.25.1