From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16085 invoked by alias); 13 Apr 2008 13:40:55 -0000 Received: (qmail 16058 invoked by uid 22791); 13 Apr 2008 13:40:53 -0000 X-Spam-Check-By: sourceware.org Received: from flagship.tchse.com (HELO flagship.tchse.com) (209.85.32.22) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sun, 13 Apr 2008 13:40:28 +0000 Received: from cpc2-port4-0-0-cust303.cos2.cable.ntl.com ([82.25.97.48] helo=[127.0.0.1]) by flagship.tchse.com with esmtpa (Exim 4.63) (envelope-from ) id 1Jl2RW-0004V1-8t; Sun, 13 Apr 2008 09:40:26 -0400 Message-ID: <48020D47.4030303@devkitpro.org> Date: Sun, 13 Apr 2008 13:40:00 -0000 From: Dave Murphy User-Agent: Thunderbird 2.0.0.12 (Windows/20080213) MIME-Version: 1.0 To: Hans Kester , gdb-patches@sourceware.org, insight@sourceware.org Subject: Re: [PATCH, GDB 6.8] Build Insight correctly on a MinGW system References: <93da74750804110214h4ec5905dpc921157e15b3ae5a@mail.gmail.com> <20080411124212.GA2057@caradoc.them.org> In-Reply-To: <20080411124212.GA2057@caradoc.them.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 080413-0, 13/04/2008), Outbound message X-Antivirus-Status: Clean X-IsSubscribed: yes Mailing-List: contact insight-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sourceware.org X-SW-Source: 2008-q2/txt/msg00031.txt.bz2 Daniel Jacobowitz wrote: > On Fri, Apr 11, 2008 at 11:14:54AM +0200, Hans Kester wrote: >> The following patch builds Insight correctly on a MinGW system. >> Could someone commit this for me? > > Copying this to the Insight maintainers. This was already committed to CVS back in March http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/configure.ac.diff?r1=1.64&r2=1.65&cvsroot=src&f=h Dave >> Index: gdb/ChangeLog >> =================================================================== >> RCS file: /cvs/src/src/gdb/ChangeLog,v >> retrieving revision 1.9174.2.20 >> diff -u -r1.9174.2.20 ChangeLog >> --- ChangeLog 31 Mar 2008 03:40:42 -0000 1.9174.2.20 >> +++ ChangeLog 11 Apr 2008 09:10:13 -0000 >> @@ -1,3 +1,8 @@ >> +2008-04-11 Hans Kester >> + >> + * configure.ac: Added configdir for MinGW. >> + * configure: Added configdir for MinGW. >> + >> 2008-03-30 Daniel Jacobowitz >> >> * ia64-tdep.c (examine_prologue): Correct array access. >> >> >> >> Index: gdb/configure.ac >> =================================================================== >> RCS file: /cvs/src/src/gdb/configure.ac,v >> retrieving revision 1.64 >> diff -u -r1.64 configure.ac >> --- configure.ac 13 Jan 2008 12:23:05 -0000 1.64 >> +++ configure.ac 11 Apr 2008 09:02:13 -0000 >> @@ -1445,7 +1445,7 @@ >> AC_SUBST(WIN32LDAPP) >> >> case "${host}" in >> -*-*-cygwin*) >> +*-*-cygwin* | *-*-mingw*) >> configdir="win" >> ;; >> *) >> >> >> >> Index: gdb/configure >> =================================================================== >> RCS file: /cvs/src/src/gdb/configure,v >> retrieving revision 1.242 >> diff -u -r1.242 configure >> --- configure 13 Jan 2008 12:23:04 -0000 1.242 >> +++ configure 11 Apr 2008 09:05:54 -0000 >> @@ -23080,7 +23080,7 @@ >> >> >> case "${host}" in >> -*-*-cygwin*) >> +*-*-cygwin* | *-*-mingw*) >> configdir="win" >> ;; >> *) >> >