1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Enable readline by default if available.

This commit is contained in:
Alasdair Kergon 2008-06-27 19:57:27 +00:00
parent 5556819ac8
commit 1b52334772
3 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.39 -
================================
Enable readline by default if available.
Update autoconf to 2008-01-16.
Add $DISTCLEAN_DIRS to make.tmpl.in.
Create coverage reports with --enable-profiling and make lcov or lcov-dated.

4
configure vendored
View File

@ -1317,7 +1317,7 @@ Optional Features:
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--enable-lvm1_fallback Use this to fall back and use LVM1 binaries if
device-mapper is missing from the kernel
--enable-readline Enable readline support
--disable-readline Disable readline support
--disable-realtime Disable realtime clock support
--enable-debug Enable debugging
--enable-profiling Gather gcov profiling data
@ -8509,7 +8509,7 @@ echo $ECHO_N "checking whether to enable readline... $ECHO_C" >&6; }
if test "${enable_readline+set}" = set; then
enableval=$enable_readline; READLINE=$enableval
else
READLINE=no
READLINE=yes
fi
{ echo "$as_me:$LINENO: result: $READLINE" >&5

View File

@ -269,11 +269,11 @@ if test x$MIRRORS = xinternal; then
fi
################################################################################
dnl -- Enable readline
dnl -- Disable readline
AC_MSG_CHECKING(whether to enable readline)
AC_ARG_ENABLE([readline],
[ --enable-readline Enable readline support],
[READLINE=$enableval], [READLINE=no])
[ --disable-readline Disable readline support],
[READLINE=$enableval], [READLINE=yes])
AC_MSG_RESULT($READLINE)
################################################################################