include: Define _WIN64 on sparc/powerpc64.
This commit is contained in:
parent
de8e11f5d8
commit
d67275fed8
|
@ -36,7 +36,7 @@ extern "C" {
|
|||
* 64-bit.
|
||||
*/
|
||||
|
||||
#if defined(__x86_64__) && !defined(_WIN64)
|
||||
#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)) && !defined(_WIN64)
|
||||
#define _WIN64
|
||||
#endif
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
# error You cannot use both wine/port.h and msvcrt headers
|
||||
#endif
|
||||
|
||||
#if defined(__x86_64__) && !defined(_WIN64)
|
||||
#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)) && !defined(_WIN64)
|
||||
#define _WIN64
|
||||
#endif
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ extern "C" {
|
|||
|
||||
/* Calling conventions definitions */
|
||||
|
||||
#if defined(__x86_64__) && !defined(_WIN64)
|
||||
#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)) && !defined(_WIN64)
|
||||
#define _WIN64
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue