From patchwork Mon Sep 15 21:24:14 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jessica Clarke X-Patchwork-Id: 2850 Received: (qmail 29616 invoked by alias); 15 Sep 2014 21:25:13 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 29607 invoked by uid 89); 15 Sep 2014 21:25:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-we0-f182.google.com Received: from mail-we0-f182.google.com (HELO mail-we0-f182.google.com) (74.125.82.182) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 15 Sep 2014 21:25:07 +0000 Received: by mail-we0-f182.google.com with SMTP id k48so4640121wev.41 for ; Mon, 15 Sep 2014 14:25:04 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=4eRX0/MQVcgzNC+IQst0v73WmdG966Mg4tI4W3KCRmE=; b=NsWQG0FSFA5BfXwp43k1pz/SM67I2fI2nlXHo4WPFfqjAxxPbGwv4U079ax/g2TKF8 hOAcK6kXZMVYD7Fv/j6E31SKET3b/Hz9NJ7zyPOnOwT4smQiRSj1ngYGNJ7YuifRO9qJ 4zxFjlh93YTE+he30xT7wn7xxifRGgnpILB4/cWIqK8P75BVEiMIN0XQkispeybEH1lM WFHShu3r8x4dmk9jItaju42D/TTLeLmSfAjY5tiwRgJ5idBa8gX3MuK5rYDrBO4F6dtb kihtq8HqKEv/pclodMeQfKfYixqDzjFdAC9A5ZlJ71yT2IAo931U+SwqyNrpJDNpwZBF HeXQ== X-Gm-Message-State: ALoCoQllOZaDz3qM3mda7VJTqcfnLNIQagXVbvC1DDf2ak7XjVBfinX+g1/Bynp5ox0tvs1YXEnU X-Received: by 10.194.90.233 with SMTP id bz9mr14800017wjb.94.1410816304684; Mon, 15 Sep 2014 14:25:04 -0700 (PDT) Received: from localhost.localdomain (host81-133-133-27.in-addr.btopenworld.com. [81.133.133.27]) by mx.google.com with ESMTPSA id ln6sm16122742wjb.13.2014.09.15.14.25.03 for (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 15 Sep 2014 14:25:03 -0700 (PDT) From: James Clarke To: gdb-patches@sourceware.org Cc: James Clarke Subject: [PATCH][PR gdb/17046] Use standard setjmp.h on Darwin Date: Mon, 15 Sep 2014 22:24:14 +0100 Message-Id: <1410816254-24831-1-git-send-email-jrtc27@jrtc27.com> The `machine/setjmp.h' header is no longer present on OS X 10.10, and is non-standard. Instead, `darwin-nat.c' should be using the standard `setjmp.h' header. gdb/ChangeLog: 2014-09-15 James Clarke PR gdb/17046 * darwin-nat.c: Import standard setjmp.h rather than the non-standard machine/setjmp.h header that no longer exists as of OS X 10.10. --- gdb/darwin-nat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/darwin-nat.c b/gdb/darwin-nat.c index af4ec01..e550785 100644 --- a/gdb/darwin-nat.c +++ b/gdb/darwin-nat.c @@ -42,7 +42,7 @@ #include #include -#include +#include #include #include #include