From 34ff565708e6462940019a8d342ac823220f0794 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 13 Mar 2013 12:04:38 +0100 Subject: [PATCH] exception.h: Android doesn't have sigsetjmp. --- include/wine/exception.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wine/exception.h b/include/wine/exception.h index 8b807c10099..9f9b3398182 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)