From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12546 invoked by alias); 11 Apr 2008 08:55:46 -0000 Received: (qmail 12453 invoked by uid 22791); 11 Apr 2008 08:55:45 -0000 X-Spam-Check-By: sourceware.org Received: from nf-out-0910.google.com (HELO nf-out-0910.google.com) (64.233.182.191) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 11 Apr 2008 08:55:21 +0000 Received: by nf-out-0910.google.com with SMTP id b11so150539nfh.48 for ; Fri, 11 Apr 2008 01:55:18 -0700 (PDT) Received: by 10.78.100.1 with SMTP id x1mr2287187hub.16.1207904118727; Fri, 11 Apr 2008 01:55:18 -0700 (PDT) Received: by 10.78.152.3 with HTTP; Fri, 11 Apr 2008 01:55:18 -0700 (PDT) Message-ID: <93da74750804110155q1df0f453l3da707ad310d75f5@mail.gmail.com> Date: Fri, 11 Apr 2008 12:42:00 -0000 From: "Hans Kester" To: gdb-patches@sourceware.org Subject: [PATCH, GDB6.8] Build error on MinGW with mips-elf target MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline 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: 2008-04/txt/msg00215.txt.bz2 These patches fix a build error with MinGW when building a mips-elf target. Could someone commit them for me? Do I need to submit a seperate patch for mainline? Regards, Hans Kester Index: sim/ChangeLog =================================================================== RCS file: /cvs/src/src/sim/ChangeLog,v retrieving revision 1.98 diff -u -r1.98 ChangeLog @@ -1,3 +1,7 @@ +2008-04-11 Hans Kester + + * common/sim-signal.c: define SIGTRAP for _WIN32 + 2008-02-05 DJ Delorie * configure.ac (v850): V850 now has a testsuite. Index: sim/common/sim-signal.c =================================================================== RCS file: /cvs/src/src/sim/common/sim-signal.c,v retrieving revision 1.6 diff -u -r1.6 sim-signal.c @@ -26,7 +26,7 @@ to not think the process has died (so it can be debugged at the point of failure). */ -#ifdef _MSC_VER +#ifdef _WIN32 #ifndef SIGTRAP #define SIGTRAP 5 #endif