Module: wine Branch: master Commit: 34ff565708e6462940019a8d342ac823220f0794 URL: http://source.winehq.org/git/wine.git/?a=commit;h=34ff565708e6462940019a8d34...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Mar 13 12:04:38 2013 +0100
exception.h: Android doesn't have sigsetjmp.
---
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 8b807c1..9f9b339 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__) +#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__ANDROID__) #define sigjmp_buf jmp_buf #define sigsetjmp(buf,sigs) setjmp(buf) #define siglongjmp(buf,val) longjmp(buf,val)