mirror of
git://sourceware.org/git/lvm2.git
synced 2025-03-10 16:58:47 +03:00
Enable readline by default if available.
This commit is contained in:
parent
5556819ac8
commit
1b52334772
@ -1,5 +1,6 @@
|
|||||||
Version 2.02.39 -
|
Version 2.02.39 -
|
||||||
================================
|
================================
|
||||||
|
Enable readline by default if available.
|
||||||
Update autoconf to 2008-01-16.
|
Update autoconf to 2008-01-16.
|
||||||
Add $DISTCLEAN_DIRS to make.tmpl.in.
|
Add $DISTCLEAN_DIRS to make.tmpl.in.
|
||||||
Create coverage reports with --enable-profiling and make lcov or lcov-dated.
|
Create coverage reports with --enable-profiling and make lcov or lcov-dated.
|
||||||
|
4
configure
vendored
4
configure
vendored
@ -1317,7 +1317,7 @@ Optional Features:
|
|||||||
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
||||||
--enable-lvm1_fallback Use this to fall back and use LVM1 binaries if
|
--enable-lvm1_fallback Use this to fall back and use LVM1 binaries if
|
||||||
device-mapper is missing from the kernel
|
device-mapper is missing from the kernel
|
||||||
--enable-readline Enable readline support
|
--disable-readline Disable readline support
|
||||||
--disable-realtime Disable realtime clock support
|
--disable-realtime Disable realtime clock support
|
||||||
--enable-debug Enable debugging
|
--enable-debug Enable debugging
|
||||||
--enable-profiling Gather gcov profiling data
|
--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
|
if test "${enable_readline+set}" = set; then
|
||||||
enableval=$enable_readline; READLINE=$enableval
|
enableval=$enable_readline; READLINE=$enableval
|
||||||
else
|
else
|
||||||
READLINE=no
|
READLINE=yes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
{ echo "$as_me:$LINENO: result: $READLINE" >&5
|
{ echo "$as_me:$LINENO: result: $READLINE" >&5
|
||||||
|
@ -269,11 +269,11 @@ if test x$MIRRORS = xinternal; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
dnl -- Enable readline
|
dnl -- Disable readline
|
||||||
AC_MSG_CHECKING(whether to enable readline)
|
AC_MSG_CHECKING(whether to enable readline)
|
||||||
AC_ARG_ENABLE([readline],
|
AC_ARG_ENABLE([readline],
|
||||||
[ --enable-readline Enable readline support],
|
[ --disable-readline Disable readline support],
|
||||||
[READLINE=$enableval], [READLINE=no])
|
[READLINE=$enableval], [READLINE=yes])
|
||||||
AC_MSG_RESULT($READLINE)
|
AC_MSG_RESULT($READLINE)
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
Loading…
x
Reference in New Issue
Block a user