Merge pull request #1184 from mcuee/cmake_print_readline

Print HAVE_LIBREADLINE status
This commit is contained in:
Stefan Rueger
2022-11-22 01:18:56 +00:00
committed by GitHub
2 changed files with 12 additions and 0 deletions

View File

@@ -577,6 +577,12 @@ else
echo "DON'T HAVE libhidapi"
fi
if test x$have_readline = xyes; then
echo "DO HAVE libreadline"
else
echo "DON'T HAVE libreadline"
fi
if test x$have_pthread = xyes; then
echo "DO HAVE pthread"
else