From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4818 invoked by alias); 24 Mar 2009 16:13:30 -0000 Received: (qmail 4807 invoked by uid 22791); 24 Mar 2009 16:13:28 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx2.redhat.com (HELO mx2.redhat.com) (66.187.237.31) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 24 Mar 2009 16:13:22 +0000 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n2OGCdoo008186; Tue, 24 Mar 2009 12:12:39 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n2OGCXIi008718; Tue, 24 Mar 2009 12:12:33 -0400 Received: from host0.dyn.jankratochvil.net (sebastian-int.corp.redhat.com [172.16.52.221]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n2OGCZKu002563; Tue, 24 Mar 2009 12:12:38 -0400 Received: from host0.dyn.jankratochvil.net (localhost [127.0.0.1]) by host0.dyn.jankratochvil.net (8.14.3/8.14.3) with ESMTP id n2OGCXnJ027818; Tue, 24 Mar 2009 17:12:34 +0100 Received: (from jkratoch@localhost) by host0.dyn.jankratochvil.net (8.14.3/8.14.2/Submit) id n2OGCWDh027813; Tue, 24 Mar 2009 17:12:32 +0100 Date: Tue, 24 Mar 2009 16:41:00 -0000 From: Jan Kratochvil To: Joel Brobecker Cc: gdb-patches@sourceware.org, Jerome Guitton Subject: Re: [RFA] Add --with-curses configure option Message-ID: <20090324161232.GA19118@host0.dyn.jankratochvil.net> References: <20090313020640.GE11284@adacore.com> <20090324012742.GN9472@adacore.com> <20090324103220.GA23668@host0.dyn.jankratochvil.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090324103220.GA23668@host0.dyn.jankratochvil.net> User-Agent: Mutt/1.5.18 (2008-05-17) X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-03/txt/msg00527.txt.bz2 On Tue, 24 Mar 2009 11:32:20 +0100, Jan Kratochvil wrote: > On Tue, 24 Mar 2009 02:27:42 +0100, Joel Brobecker wrote: > > > 2009-02-13 Jerome Guitton > > > > > > * configure.ac: Add --with-curses. > > > * configure: Regenerated. > > > > There were no objections, so I checked this patch in after reverifying it > > by buiding GDB on x86-linux before the patch (linked to libtermcap.so), > > All the tests now fail on Fedora 10 x86_64 due to an unexpected output there: OK to check in? IMO more a typo-like fix, the condition should match a similiar $enable_tui below it. Thanks, Jan 2009-03-24 Jan Kratochvil * configure.ac: Enable $PREFER_CURSES even with default $ENABLE_TUI. * configure: Regenerated. --- gdb/configure.ac 24 Mar 2009 01:19:26 -0000 1.88 +++ gdb/configure.ac 24 Mar 2009 16:09:12 -0000 @@ -467,7 +467,7 @@ case $host_os in esac # For the TUI, we need enhanced curses functionality. -if test x"$enable_tui" = xyes; then +if test x"$enable_tui" != xno; then prefer_curses=yes fi