Fix libreadline detection.

This commit is contained in:
Christian Bauer 2018-10-28 13:28:06 +01:00
parent ddf1bcf094
commit 76c5a97efe
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@ dnl Checks for libraries.
AC_SEARCH_LIBS([tgetent], [ncurses termcap termlib terminfo Hcurses curses], [], [
AC_MSG_ERROR([unable to find the tgetent() function])
])
AC_SEARCH_LIBS([readline], [readline], [], [
AC_SEARCH_LIBS([readline], [readline], [
AC_DEFINE([HAVE_LIBREADLINE], 1, [Define if you have the Readline library])], [
AC_MSG_ERROR([unable to find the readline() function])
])