summarylogtreecommitdiffstats
path: root/0017-MINGW-ignore-main-program-for-frozen-scripts.patch
diff options
context:
space:
mode:
authoratomlong2021-10-23 17:55:22 +0800
committeratomlong2021-10-23 18:06:15 +0800
commit80096c8de4b34ec1ed8f30bb428918cd592b2424 (patch)
treeb48dd1e73de9ea35a4709fb6b93deb16331ec514 /0017-MINGW-ignore-main-program-for-frozen-scripts.patch
parent89a67c05174951d172252b1db96ff93cc4ec4bcd (diff)
downloadaur-mingw-w64-python.tar.gz
update to 3.9.7
Diffstat (limited to '0017-MINGW-ignore-main-program-for-frozen-scripts.patch')
-rw-r--r--0017-MINGW-ignore-main-program-for-frozen-scripts.patch52
1 files changed, 0 insertions, 52 deletions
diff --git a/0017-MINGW-ignore-main-program-for-frozen-scripts.patch b/0017-MINGW-ignore-main-program-for-frozen-scripts.patch
deleted file mode 100644
index cc205a5a78f0..000000000000
--- a/0017-MINGW-ignore-main-program-for-frozen-scripts.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-From 5230e91dc7c783925a609e8fec18955546a0cbe7 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:26 +0530
-Subject: [PATCH 017/N] MINGW ignore main program for frozen scripts
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Co-authored-by: Алексей <alexey.pawlow@gmail.com>
----
- Makefile.pre.in | 2 +-
- configure.ac | 10 ++++++++++
- 2 files changed, 11 insertions(+), 1 deletion(-)
-
-diff --git a/Makefile.pre.in b/Makefile.pre.in
-index 9f2475d..223a266 100644
---- a/Makefile.pre.in
-+++ b/Makefile.pre.in
-@@ -352,7 +352,7 @@ PYTHON_OBJS= \
- Python/context.o \
- Python/dynamic_annotations.o \
- Python/errors.o \
-- Python/frozenmain.o \
-+ @PYTHON_OBJS_FROZENMAIN@ \
- Python/future.o \
- Python/getargs.o \
- Python/getcompiler.o \
-diff --git a/configure.ac b/configure.ac
-index dfe55ad..ccc558e 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -5707,6 +5707,16 @@ case $host in
- ;;
- esac
-
-+dnl Python interpreter main program for frozen scripts
-+AC_SUBST(PYTHON_OBJS_FROZENMAIN)
-+PYTHON_OBJS_FROZENMAIN="Python/frozenmain.o"
-+case $host in
-+ *-*-mingw*)
-+ dnl 'PC/frozen_dllmain.c' - not yet
-+ PYTHON_OBJS_FROZENMAIN=
-+ ;;
-+esac
-+
- AC_SUBST(SRCDIRS)
- SRCDIRS="Parser Parser/pegen Objects Python Modules Modules/_io Programs"
- case $host in
---
-2.32.0
-