From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1392 invoked by alias); 27 Jun 2008 19:57:28 -0000 Received: (qmail 1378 invoked by uid 9447); 27 Jun 2008 19:57:28 -0000 Date: Fri, 27 Jun 2008 19:57:00 -0000 Message-ID: <20080627195728.1376.qmail@sourceware.org> From: agk@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2 WHATS_NEW configure configure.in Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2008-06/txt/msg00060.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: agk@sourceware.org 2008-06-27 19:57:27 Modified files: . : WHATS_NEW configure configure.in Log message: Enable readline by default if available. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.922&r2=1.923 http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/configure.diff?cvsroot=lvm2&r1=1.72&r2=1.73 http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/configure.in.diff?cvsroot=lvm2&r1=1.73&r2=1.74 --- LVM2/WHATS_NEW 2008/06/27 19:24:17 1.922 +++ LVM2/WHATS_NEW 2008/06/27 19:57:27 1.923 @@ -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. --- LVM2/configure 2008/06/27 19:24:17 1.72 +++ LVM2/configure 2008/06/27 19:57:27 1.73 @@ -1317,7 +1317,7 @@ --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 @@ 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 --- LVM2/configure.in 2008/06/27 19:24:17 1.73 +++ LVM2/configure.in 2008/06/27 19:57:27 1.74 @@ -269,11 +269,11 @@ 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) ################################################################################