46 lines
1.4 KiB
Diff
46 lines
1.4 KiB
Diff
From d9473a4d22f644541ecc7e0979f0a1427aef1b39 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9?=
|
|
<alexey.pawlow@gmail.com>
|
|
Date: Thu, 17 Jun 2021 18:51:13 +0530
|
|
Subject: [PATCH 003/N] Define `MS_WINDOWS` (and others) when compiling with
|
|
MINGW
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
This is used throughout the Python code but is not defined
|
|
when compiling with Mingw-w64 compilers, so define it.
|
|
|
|
Co-authored-by: Алексей <alexey.pawlow@gmail.com>
|
|
Co-authored-by: Christoph Reiter <reiter.christoph@gmail.com>
|
|
---
|
|
Include/pyport.h | 15 +++++++++++++++
|
|
1 file changed, 15 insertions(+)
|
|
|
|
diff --git a/Include/pyport.h b/Include/pyport.h
|
|
index b3b8b6f..b24c075 100644
|
|
--- a/Include/pyport.h
|
|
+++ b/Include/pyport.h
|
|
@@ -53,6 +53,21 @@
|
|
#endif
|
|
|
|
|
|
+#ifdef __MINGW32__
|
|
+/* Translate GCC[mingw*] platform specific defines to those
|
|
+ * used in python code.
|
|
+ */
|
|
+#if !defined(MS_WIN64) && defined(_WIN64)
|
|
+# define MS_WIN64
|
|
+#endif
|
|
+#if !defined(MS_WIN32) && defined(_WIN32)
|
|
+# define MS_WIN32
|
|
+#endif
|
|
+#if !defined(MS_WINDOWS) && defined(MS_WIN32)
|
|
+# define MS_WINDOWS
|
|
+#endif
|
|
+#endif /* __MINGW32__*/
|
|
+
|
|
/**************************************************************************
|
|
Symbols and macros to supply platform-independent interfaces to basic
|
|
C language & library operations whose spellings vary across platforms.
|