From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32495 invoked by alias); 16 Sep 2014 08:41:02 -0000 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 Received: (qmail 32485 invoked by uid 89); 16 Sep 2014 08:41:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.2 X-HELO: smtp.eu.adacore.com Received: from mel.act-europe.fr (HELO smtp.eu.adacore.com) (194.98.77.210) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 16 Sep 2014 08:40:55 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id F0E532731792; Tue, 16 Sep 2014 10:40:51 +0200 (CEST) Received: from smtp.eu.adacore.com ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IHcnj9Cc0AVT; Tue, 16 Sep 2014 10:40:51 +0200 (CEST) Received: from ulanbator.act-europe.fr (ulanbator.act-europe.fr [10.10.1.67]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.eu.adacore.com (Postfix) with ESMTPSA id CF09D2731618; Tue, 16 Sep 2014 10:40:51 +0200 (CEST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: [PATCH][PR gdb/17046] Use standard setjmp.h on Darwin From: Tristan Gingold In-Reply-To: <1410816254-24831-1-git-send-email-jrtc27@jrtc27.com> Date: Tue, 16 Sep 2014 08:41:00 -0000 Cc: gdb-patches@sourceware.org Content-Transfer-Encoding: 7bit Message-Id: References: <1410816254-24831-1-git-send-email-jrtc27@jrtc27.com> To: James Clarke X-IsSubscribed: yes X-SW-Source: 2014-09/txt/msg00516.txt.bz2 On 15 Sep 2014, at 23:24, James Clarke wrote: > 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. Yes, this is indeed obvious. Please commit. Tristan.