|
From: Petr M. <mi...@ph...> - 2007-01-21 08:22:20
|
> > > > 2. I propose to set > > > > --with-readline=gnu > > > > to be the default, instead of the built-in readline. > > > > People (except for some distributors) always use this option, > > > > and setting this to default will save us time to answer those > > > > permanent emails "tabulator does not work in the new version". > > > > > > Fine with me. Do you have a patch? > > Maybe have the built-in readline be selected by > --with-readline=builtin > rather than > --with-readline > > This comment is confusing: > > Readline library: builtin minimal readline (use --with-readline to override) Yes, it as. I've changed it: $ ./configure --help ... --with-readline=builtin use the built-in minimal readline --with-readline=gnu use the GNU readline library (default; 4.2 or newer required) --with-readline=DIR specify the location of GNU readline ... $ ./configure --with-readline $ ./configure --with-readline=gnu ... Readline library: GNU readline library with -lncurses ... $ ./configure --with-readline=builtin ... Readline library: builtin minimal (use --with-readline=gnu for GNU readline) ... --- PM |