History lib may be integrated to Readline lib
This commit is contained in:
parent
81edd3b3a7
commit
dab6706aba
1 changed files with 7 additions and 6 deletions
13
configure.ac
13
configure.ac
|
@ -355,17 +355,18 @@ if test "$enable_client" = yes ; then
|
||||||
[AC_INCLUDES_DEFAULT]
|
[AC_INCLUDES_DEFAULT]
|
||||||
)
|
)
|
||||||
|
|
||||||
AC_SEARCH_LIBS([add_history], [history],
|
|
||||||
[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.])],
|
|
||||||
)
|
|
||||||
|
|
||||||
AC_SEARCH_LIBS([rl_callback_read_char], [readline],
|
AC_SEARCH_LIBS([rl_callback_read_char], [readline],
|
||||||
[READLINE_LIBS="$LIBS"; LIBS=""],
|
[READLINE_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.])],
|
[AC_MSG_ERROR([The client requires GNU Readline library. Either install the library or use --disable-client to compile without the client.])],
|
||||||
[$TINFO_LIBS]
|
[$TINFO_LIBS]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
AC_SEARCH_LIBS([add_history], [history],
|
||||||
|
[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]
|
||||||
|
)
|
||||||
|
|
||||||
AC_CHECK_LIB([readline], [rl_crlf],
|
AC_CHECK_LIB([readline], [rl_crlf],
|
||||||
[AC_DEFINE([HAVE_RL_CRLF], [1], [Define to 1 if you have rl_crlf()])],
|
[AC_DEFINE([HAVE_RL_CRLF], [1], [Define to 1 if you have rl_crlf()])],
|
||||||
[],
|
[],
|
||||||
|
@ -379,7 +380,7 @@ if test "$enable_client" = yes ; then
|
||||||
)
|
)
|
||||||
|
|
||||||
LIBS="$BASE_LIBS"
|
LIBS="$BASE_LIBS"
|
||||||
CLIENT_LIBS="$READLINE_LIBS $HISTORY_LIBS $TINFO_LIBS"
|
CLIENT_LIBS="$HISTORY_LIBS $READLINE_LIBS $TINFO_LIBS"
|
||||||
fi
|
fi
|
||||||
AC_SUBST([CLIENT])
|
AC_SUBST([CLIENT])
|
||||||
AC_SUBST([CLIENT_LIBS])
|
AC_SUBST([CLIENT_LIBS])
|
||||||
|
|
Loading…
Reference in a new issue