From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11696 invoked by alias); 31 Jan 2012 20:18:45 -0000 Received: (qmail 11684 invoked by uid 22791); 31 Jan 2012 20:18:43 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-vw0-f41.google.com (HELO mail-vw0-f41.google.com) (209.85.212.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 31 Jan 2012 20:18:23 +0000 Received: by vbip1 with SMTP id p1so458984vbi.0 for ; Tue, 31 Jan 2012 12:18:23 -0800 (PST) Received: by 10.52.33.68 with SMTP id p4mr11468992vdi.52.1328041103197; Tue, 31 Jan 2012 12:18:23 -0800 (PST) MIME-Version: 1.0 Received: by 10.52.187.10 with HTTP; Tue, 31 Jan 2012 12:18:03 -0800 (PST) From: Josh Matthews Date: Tue, 31 Jan 2012 22:00:00 -0000 Message-ID: Subject: [PATCH] Fix Darwin build error To: gdb-patches@sourceware.org Content-Type: text/plain; charset=ISO-8859-1 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: 2012-01/txt/msg01019.txt.bz2 Darwin is busted again. Here's a fix. Cheers, Josh diff --git a/gdb/ChangeLog b/gdb/ChangeLog index daf970c..105e6e5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-01-31 Josh Matthews + + Fix build error in Darwin port. + * i386-darwin-nat.c: Include i386-nat.h. + 2012-01-31 Tom Tromey * language.h (struct language_defn) : Fix diff --git a/gdb/i386-darwin-nat.c b/gdb/i386-darwin-nat.c index 12e2e65..a4f11e0 100644 --- a/gdb/i386-darwin-nat.c +++ b/gdb/i386-darwin-nat.c @@ -19,6 +19,7 @@ along with this program. If not, see . */ #include "defs.h" +#include "i386-nat.h" #include "frame.h" #include "inferior.h" #include "target.h"