mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-12 20:31:55 -08:00
Change needed for OS X 10.6 Leopard: ucontext.h is deprecated and produces an error.
This commit is contained in:
parent
04c7b4e67b
commit
0e7563952e
1 changed files with 5 additions and 1 deletions
|
|
@ -161,7 +161,11 @@ void GC_push_regs()
|
|||
|
||||
#if !defined(HAVE_PUSH_REGS) && defined(UNIX_LIKE)
|
||||
# ifndef NO_GETCONTEXT
|
||||
# include <ucontext.h>
|
||||
# ifdef __APPLE__
|
||||
# include <sys/ucontext.h>
|
||||
# else
|
||||
# include <ucontext.h>
|
||||
# endif
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue