=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: include: Add remaining checks for ARM64.

Alexandre Julliard julliard at winehq.org
Mon Jan 28 13:43:20 CST 2013


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Sat Jan 26 12:10:23 2013 +0100

include: Add remaining checks for ARM64.

---

 include/msvcrt/crtdefs.h |    2 +-
 include/windef.h         |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/msvcrt/crtdefs.h b/include/msvcrt/crtdefs.h
index 06ce9c3..da278be 100644
--- a/include/msvcrt/crtdefs.h
+++ b/include/msvcrt/crtdefs.h
@@ -29,7 +29,7 @@
 # error You cannot use both wine/port.h and msvcrt headers
 #endif
 
-#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)) && !defined(_WIN64)
+#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__) || defined(__aarch64__)) && !defined(_WIN64)
 #define _WIN64
 #endif
 
diff --git a/include/windef.h b/include/windef.h
index eb59353..17c0fba 100644
--- a/include/windef.h
+++ b/include/windef.h
@@ -37,7 +37,7 @@ extern "C" {
 
 /* Calling conventions definitions */
 
-#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)) && !defined(_WIN64)
+#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__) || defined(__aarch64__)) && !defined(_WIN64)
 #define _WIN64
 #endif
 




More information about the wine-cvs mailing list