[darwin/gdb] Use <setjmp.h> instead of <machine/setjmp.h>
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: 2015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch) PR gdb/17046 * darwin-nat.c: Replace <machine/setjmp.h> #include by <setjmp.h> #include.
This commit is contained in:
parent
3d230f7174
commit
4ac15b59f2
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch)
|
||||
|
||||
PR gdb/17046
|
||||
* darwin-nat.c: Replace <machine/setjmp.h> #include by
|
||||
<setjmp.h> #include.
|
||||
|
||||
2015-01-11 Doug Evans <xdje42@gmail.com>
|
||||
|
||||
* dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
|
||||
#include <sys/ptrace.h>
|
||||
#include <sys/signal.h>
|
||||
#include <machine/setjmp.h>
|
||||
#include <setjmp.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <signal.h>
|
||||
|
|
Loading…
Reference in a new issue