From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6166 invoked by alias); 27 May 2003 23:46:16 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 6103 invoked from network); 27 May 2003 23:46:15 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (62.163.169.212) by sources.redhat.com with SMTP; 27 May 2003 23:46:15 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.6p2/8.12.5) with ESMTP id h4RNk5Xm000269; Wed, 28 May 2003 01:46:05 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) by elgar.kettenis.dyndns.org (8.12.6p2/8.12.6) with ESMTP id h4RNk5rR000731; Wed, 28 May 2003 01:46:05 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6p2/8.12.6/Submit) id h4RNk4Rc000728; Wed, 28 May 2003 01:46:04 +0200 (CEST) Date: Tue, 27 May 2003 23:46:00 -0000 Message-Id: <200305272346.h4RNk4Rc000728@elgar.kettenis.dyndns.org> From: Mark Kettenis To: chet@cwru.edu CC: gdb-patches@sources.redhat.com, ezannoni@redhat.com, chet@cwru.edu In-reply-to: <030527141412.AA74998.SM@nike.ins.cwru.edu> (message from Chet Ramey on Tue, 27 May 2003 10:14:12 -0400) Subject: Re: Fix readline for platforms without References: <200305251129.h4PBTfrV010272@elgar.kettenis.dyndns.org> <030527141412.AA74998.SM@nike.ins.cwru.edu> X-SW-Source: 2003-05/txt/msg00501.txt.bz2 Date: Tue, 27 May 2003 10:14:12 -0400 From: Chet Ramey > [ Chet, I don't now if you ever received the change that was > origionally made to the copy of readline in the GDB tree. Just in > case you intend to incorporate such a change in the next release of > readline, this patch solves a problem with it. ] > > There is a problem with one of our local GDB fixes for readline: I'm not going to include wcwidth in libreadline. It's not appropriate for libraries to be conditionally including C library functions -- it just causes problems down the line. That's what the calling application should be doing. Thanks! Yes, that makes sense. I'll see if I can get rid of this local fix in the GDB repository by adding some hackery to the GDB configure script instead. Mark