From 8bcf3b98876a79164ddc183c6f035d4acef385b2 Mon Sep 17 00:00:00 2001 From: jhwillett Date: Wed, 17 Mar 2021 12:52:04 -0700 Subject: [PATCH] More precise error messages for ./configure --without-lz4 and --without-zstd. --- configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index 7095aa7bd..2e769c920 100644 --- a/configure.in +++ b/configure.in @@ -237,7 +237,7 @@ if test "$HAS_TABLEAM" == 'yes'; then [AC_MSG_ERROR([lz4 library not found If you have lz4 installed, see config.log for details on the failure. It is possible the compiler isn't looking in the proper directory. - Use --without-lz4 to disable zlib support.])]) + Use --without-lz4 to disable lz4 support.])]) AC_CHECK_HEADER(lz4.h, [], [AC_MSG_ERROR([lz4 header not found If you have lz4 already installed, see config.log for details on the failure. It is possible the compiler isn't looking in the proper directory. @@ -256,11 +256,11 @@ if test "$HAS_TABLEAM" == 'yes'; then [AC_MSG_ERROR([zstd library not found If you have zstd installed, see config.log for details on the failure. It is possible the compiler isn't looking in the proper directory. - Use --without-zstd to disable zlib support.])]) + Use --without-zstd to disable zstd support.])]) AC_CHECK_HEADER(zstd.h, [], [AC_MSG_ERROR([zstd header not found If you have zstd already installed, see config.log for details on the failure. It is possible the compiler isn't looking in the proper directory. - Use --without-zstd to disable zlib support.])]) + Use --without-zstd to disable zstd support.])]) fi fi # test "$HAS_TABLEAM" == 'yes'