1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix a problem in autoconf/configure.ac causing --enable-readline to fail if libedit was not present.

FossilOrigin-Name: e8adeb64d4e463772feb58dbd6f00715b92e735c
This commit is contained in:
dan
2016-01-20 15:19:56 +00:00
parent fb3972602c
commit 30908c97ac
3 changed files with 10 additions and 9 deletions

View File

@ -49,6 +49,8 @@ if test x"$enable_editline" != xno ; then
READLINE_LIBS=$LIBS
if test x"$LIBS" != "x"; then
AC_DEFINE([HAVE_EDITLINE],1,Define to use BSD editline)
else
unset ac_cv_search_readline
fi
LIBS=$sLIBS
fi