Advertisement
Guest User

Untitled

a guest
May 27th, 2015
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. --- src/lisp.h.orig 2014-11-19 15:00:20.843528000 +0900
  2. +++ src/lisp.h 2014-11-19 15:07:48.693175100 +0900
  3. @@ -2810,7 +2810,11 @@
  4. /* A platform that uses neither _longjmp nor siglongjmp; assume
  5. longjmp does not affect the sigmask. */
  6. typedef jmp_buf sys_jmp_buf;
  7. +#if defined __MINGW64__ && defined __clang__
  8. +# define sys_setjmp(j) _setjmp (j, NULL)
  9. +#else
  10. # define sys_setjmp(j) setjmp (j)
  11. +#endif
  12. # define sys_longjmp(j, v) longjmp (j, v)
  13. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement