diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-05-17 17:30:23 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-05-17 17:30:23 +0200 |
commit | d6e01ff90024fcee259eb145f38a0f5b000e4798 (patch) | |
tree | 4eede8b2fdb232ba3c357dd7998cb5613ed63a59 | |
parent | dab6706abad3be5b8efd44fe860689df44d20e83 (diff) |
Fix of the previous commit
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5d36d8e2..91f89edf 100644 --- a/configure.ac +++ b/configure.ac @@ -361,10 +361,10 @@ if test "$enable_client" = yes ; then [$TINFO_LIBS] ) - AC_SEARCH_LIBS([add_history], [history], + AC_SEARCH_LIBS([add_history], [history readline], [HISTORY_LIBS="$LIBS"; LIBS=""], [AC_MSG_ERROR([The client requires GNU Readline library. Either install the library or use --disable-client to compile without the client.])], - [$READLINE_LIBS $TINFO_LIBS] + [$TINFO_LIBS] ) AC_CHECK_LIB([readline], [rl_crlf], |