André Hentschel : include: Better detect MIPS architecture.

Alexandre Julliard julliard at winehq.org
Mon Nov 1 11:54:31 CDT 2010


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Fri Oct 29 16:34:47 2010 +0200

include: Better detect MIPS architecture.

---

 include/winnt.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/winnt.h b/include/winnt.h
index 3c38acc..f4e24d6 100644
--- a/include/winnt.h
+++ b/include/winnt.h
@@ -1309,7 +1309,7 @@ typedef struct _CONTEXT {
 
 
 /* Mips context definitions */
-#ifdef _MIPS_
+#if defined(_MIPS_) || defined(__MIPS__) || defined(__mips__)
 
 #define CONTEXT_R4000   0x00010000
 




More information about the wine-cvs mailing list