it seemed to detect it for me when I built on Debian 7

I had the following packages installed via apt-get:  readline-common 
libreadline6-dev libreadline6

On May 20, 2016, at 6:07 AM, Jeroen Demeyer <jdemeyer at cage.ugent.be> wrote:

> With SQLite 3.13.0 using the autoconf tarball, running ./configure without 
> arguments does not automatically check for readline. This used to work in 
> SQLite 3.8.4. The reason is that the default value for "enable-readline" is 
> set to "no" in configure.ac. The fix is easy:
> 
> diff -ru a/configure.ac b/configure.ac
> --- a/configure.ac      2016-05-20 11:37:09.548488947 +0200
> +++ b/configure.ac      2016-05-20 11:37:21.918632861 +0200
> @@ -41,7 +41,7 @@
> AC_ARG_ENABLE(readline, [AS_HELP_STRING(
>   [--enable-readline],
>   [use readline])],
> -  [], [enable_readline=no])
> +  [], [enable_readline=yes])
> if test x"$enable_editline" != xno ; then
>   sLIBS=$LIBS
>   LIBS=""
> _______________________________________________
> sqlite-users mailing list
> sqlite-users at mailinglists.sqlite.org
> http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to