From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3164 invoked by alias); 9 Dec 2009 10:12:30 -0000 Received: (qmail 3153 invoked by uid 22791); 9 Dec 2009 10:12:29 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 09 Dec 2009 10:12:25 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id A84E22BAC19 for ; Wed, 9 Dec 2009 05:12:23 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id KlY9cCdMS1ju for ; Wed, 9 Dec 2009 05:12:23 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 75CC52BAC17 for ; Wed, 9 Dec 2009 05:12:23 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id B56B0F58FB; Wed, 9 Dec 2009 11:12:21 +0100 (CET) Date: Wed, 09 Dec 2009 10:12:00 -0000 From: Joel Brobecker To: gdb-patches@sourceware.org Subject: Re: [RFA/commit] use libiconv.a instead of -liconv for in-tree libiconv Message-ID: <20091209101221.GA2919@adacore.com> References: <20091203225852.GG2877@adacore.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="jRHKVT23PllUwdXP" Content-Disposition: inline In-Reply-To: <20091203225852.GG2877@adacore.com> User-Agent: Mutt/1.5.20 (2009-06-14) 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-12/txt/msg00128.txt.bz2 --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 438 > 2009-12-03 Joel Brobecker > > * acinclude.m4: Link against in-tree libiconv by adding > libiconv.a to the LIBS instead of using -liconv. > * configure: Regenerate. Now checked in. I also committed the following comment update, following feedback from Daniel: 2009-12-09 Joel Brobecker * acinclude.m4: Update comment. Cheers, -- Joel --jRHKVT23PllUwdXP Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="iconv-configure-comment.diff" Content-length: 480 Index: acinclude.m4 =================================================================== RCS file: /cvs/src/src/gdb/acinclude.m4,v retrieving revision 1.33 diff -u -p -r1.33 acinclude.m4 --- acinclude.m4 9 Dec 2009 10:07:13 -0000 1.33 +++ acinclude.m4 9 Dec 2009 10:09:34 -0000 @@ -169,7 +169,8 @@ case "x$am_cv_prog_cc_stdc" in esac ]) -dnl From Bruno Haible. +dnl Originally from Bruno Haible, but with some modifications +dnl for the GDB project. AC_DEFUN([AM_ICONV], [ --jRHKVT23PllUwdXP--