From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21905 invoked by alias); 8 Feb 2006 16:48:05 -0000 Received: (qmail 21895 invoked by uid 22791); 8 Feb 2006 16:48:04 -0000 X-Spam-Check-By: sourceware.org Received: from fra-del-04.spheriq.net (HELO fra-del-04.spheriq.net) (195.46.51.100) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 08 Feb 2006 16:47:52 +0000 Received: from fra-out-02.spheriq.net (fra-out-02.spheriq.net [195.46.51.130]) by fra-del-04.spheriq.net with ESMTP id k18Gldxv004028 for ; Wed, 8 Feb 2006 16:47:43 GMT Received: from fra-cus-01.spheriq.net (fra-cus-01.spheriq.net [195.46.51.37]) by fra-out-02.spheriq.net with ESMTP id k18GlbD0026932 for ; Wed, 8 Feb 2006 16:47:39 GMT Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by fra-cus-01.spheriq.net with ESMTP id k18Gla7G001677 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Wed, 8 Feb 2006 16:47:37 GMT Received: from zeta.dmz-eu.st.com (ns2.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 0F4B0DA43; Wed, 8 Feb 2006 16:47:36 +0000 (GMT) Received: from mail1.bri.st.com (mail1.bri.st.com [164.129.8.218]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 57C9147487; Wed, 8 Feb 2006 16:51:13 +0000 (GMT) Received: from [164.129.15.13] (terrorhawk.bri.st.com [164.129.15.13]) by mail1.bri.st.com (MOS 3.5.8-GR) with ESMTP id CHF04945 (AUTH stubbsa); Wed, 8 Feb 2006 16:47:27 GMT Message-ID: <43EA201B.5080305@st.com> Date: Wed, 08 Feb 2006 16:48:00 -0000 From: Andrew STUBBS User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: Denis PILAT , gdb-patches@sources.redhat.com, bash-maintainers@gnu.org Subject: Re: [readline-mingw] backspace key and TUI size References: <43E9A5B1.1030001@st.com> <20060208134335.GA22980@nevyn.them.org> <43EA1655.609@st.com> <20060208161452.GA26965@nevyn.them.org> In-Reply-To: <20060208161452.GA26965@nevyn.them.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-O-Spoofed: Not Scanned X-O-General-Status: No X-O-Spam1-Status: Not Scanned X-O-Spam2-Status: Not Scanned X-O-URL-Status: Not Scanned X-O-Virus1-Status: No X-O-Virus2-Status: Not Scanned X-O-Virus3-Status: No X-O-Virus4-Status: No X-O-Virus5-Status: Not Scanned X-O-Image-Status: Not Scanned X-O-Attach-Status: Not Scanned X-SpheriQ-Ver: 4.2.01 X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-02/txt/msg00175.txt.bz2 Daniel Jacobowitz wrote: > On Wed, Feb 08, 2006 at 05:03:33PM +0100, Denis PILAT wrote: >> Our host is i686-pc-mingw32, gdb is compiled under cygwin with >> "-mno-cygwin" flag to avoid cygwin dependencies. >> We also use pdcurses library since ncurse is not available on windows. >> I think that's why you don't see the problem. With this patch, I'm not >> using the tputs() function anymore on Windows, as it was not used for MSDOS. > > Ah - we (CodeSourcery) don't use a curses library at all; just the > standard Windows and MinGW DLLs. See win32-termcap.c. Are those > functions not being used for you? No, we don't use those functions. The win32-termcap doesn't support the TUI. PDcurses does (mostly), but the symbols clash, so win32-termcap is disabled. Andrew