Mercurial > hg > octave-nkf
diff m4/acinclude.m4 @ 15238:c4779a180134
avoid confusing --disable-foo (default is yes) configure help messages
* configure.ac, m4/acinclude.m4: If a feature FOO is enabled by
default, use --disable-FOO in the help message. If it is disabled by
default, use --enable-FOO.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sun, 26 Aug 2012 16:17:02 -0400 |
parents | 8750f2cdc4f1 |
children | e787ba62aacf |
line wrap: on
line diff
--- a/m4/acinclude.m4 +++ b/m4/acinclude.m4 @@ -1018,8 +1018,8 @@ USE_READLINE=true READLINE_LIBS= AC_ARG_ENABLE(readline, - [AS_HELP_STRING([--enable-readline], - [use readline library (default is yes)])], + [AS_HELP_STRING([--disable-readline], + [use readline library])], [if test "$enableval" = no; then USE_READLINE=false warn_readline="command editing and history features require GNU Readline"