37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
From 4b01adb6f8442db0464a981704f3d67937b1cbb4 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:52:06 +0530
|
|
Subject: [PATCH 052/N] fix using dllhandle and winver mingw
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Co-authored-by: Алексей <alexey.pawlow@gmail.com>
|
|
---
|
|
Python/sysmodule.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
|
|
index e740cf9..48c4cf5 100644
|
|
--- a/Python/sysmodule.c
|
|
+++ b/Python/sysmodule.c
|
|
@@ -39,7 +39,7 @@ Data members:
|
|
#include <windows.h>
|
|
#endif /* MS_WINDOWS */
|
|
|
|
-#ifdef MS_COREDLL
|
|
+#if defined(MS_WINDOWS) && defined(Py_ENABLE_SHARED)
|
|
extern void *PyWin_DLLhModule;
|
|
/* A string loaded from the DLL at startup: */
|
|
extern const char *PyWin_DLLVersionString;
|
|
@@ -2847,7 +2847,7 @@ _PySys_InitCore(PyThreadState *tstate, PyObject *sysdict)
|
|
SET_SYS_FROM_STRING("byteorder", "little");
|
|
#endif
|
|
|
|
-#ifdef MS_COREDLL
|
|
+#if defined(MS_WINDOWS) && defined(Py_ENABLE_SHARED)
|
|
SET_SYS("dllhandle", PyLong_FromVoidPtr(PyWin_DLLhModule));
|
|
SET_SYS_FROM_STRING("winver", PyWin_DLLVersionString);
|
|
#endif
|