diff --git a/CMakeLists.txt b/CMakeLists.txt index 400da29fe..1269650d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -361,6 +361,12 @@ else() message(STATUS "DON'T HAVE libftdi1") endif() +if(HAVE_LIBREADLINE) + message(STATUS "DO HAVE libreadline") +else() + message(STATUS "DON'T HAVE libreadline") +endif() + if(BUILD_DOC) message(STATUS "ENABLED doc") else() diff --git a/src/configure.ac b/src/configure.ac index e6629c735..b06d568a8 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -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