Merge pull request #4834 from ProsperWorks/master

More precise error messages for ./configure.
pull/4835/head
Marco Slot 2021-03-18 14:22:09 +01:00 committed by GitHub
commit 4ad88a7a89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -237,7 +237,7 @@ if test "$HAS_TABLEAM" == 'yes'; then
[AC_MSG_ERROR([lz4 library not found [AC_MSG_ERROR([lz4 library not found
If you have lz4 installed, see config.log for details on the 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. 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 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 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. 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 [AC_MSG_ERROR([zstd library not found
If you have zstd installed, see config.log for details on the 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. 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 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 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. 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
fi # test "$HAS_TABLEAM" == 'yes' fi # test "$HAS_TABLEAM" == 'yes'