Module: wine Branch: master Commit: 3dc0474cfc9318d9e89fd1d1da73cfaf1c7a61bb URL: http://source.winehq.org/git/wine.git/?a=commit;h=3dc0474cfc9318d9e89fd1d1da...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Jul 29 21:16:07 2013 +0200
include: Android supports sigsetjmp now.
---
include/wine/exception.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/wine/exception.h b/include/wine/exception.h index 9f9b339..8b807c1 100644 --- a/include/wine/exception.h +++ b/include/wine/exception.h @@ -88,7 +88,7 @@ extern "C" {
#else /* USE_COMPILER_EXCEPTIONS */
-#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__ANDROID__) +#if defined(__MINGW32__) || defined(__CYGWIN__) #define sigjmp_buf jmp_buf #define sigsetjmp(buf,sigs) setjmp(buf) #define siglongjmp(buf,val) longjmp(buf,val)