diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-05-10T16·34+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-05-10T16·37+0200 |
commit | c5f23f10a84f568874321c04984b1a14d2dce978 (patch) | |
tree | fa672fb6cf9c64015d57438366492bb2eaa9c99c /configure.ac | |
parent | 82a9c93c7f090d5a4eebe84894669aa13d31ed61 (diff) |
Replace readline by linenoise
Using linenoise avoids a license compatibility issue (#1356), is a lot smaller and doesn't pull in ncurses.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index ac37456ae5fe..c7026cf954dd 100644 --- a/configure.ac +++ b/configure.ac @@ -196,14 +196,6 @@ if test "$gc" = yes; then fi -# Check for readline, needed by "nix repl". -AX_LIB_READLINE -if test "$ax_cv_lib_readline" != "no"; then - have_readline=1 -fi -AC_SUBST(HAVE_READLINE, [$have_readline]) - - AC_ARG_ENABLE(init-state, AC_HELP_STRING([--disable-init-state], [do not initialise DB etc. in `make install']), init_state=$enableval, init_state=yes) |