Alexandre Julliard : exception.h: Android doesn't have sigsetjmp.

Alexandre Julliard julliard at winehq.org
Wed Mar 13 17:10:07 CDT 2013


Module: wine
Branch: master
Commit: 34ff565708e6462940019a8d342ac823220f0794
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=34ff565708e6462940019a8d342ac823220f0794

Author: Alexandre Julliard <julliard at 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)




More information about the wine-cvs mailing list