MINGW-packages/mingw-w64-python3.13/0172-Add-flag-for-64-bit-time-in-configure-script.patch
Christoph Reiter 04c9ed3700 python3.13: Add 3.13.7
* add libb2 as dep
* remove "-Wl,--large-address-aware", default now via makepkg
* remove 2to3 logic, no longer in Python
2025-09-08 22:02:30 +02:00

23 lines
701 B
Diff

From 014594347e58bbfe6b6f88569c3b71f1c672e5a6 Mon Sep 17 00:00:00 2001
From: Alexey Pavlov <alexpux@gmail.com>
Date: Fri, 5 Sep 2025 19:02:36 +0300
Subject: [PATCH 172/N] Add flag for 64-bit time in configure script
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index d3c9a8f..b2ff159 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2646,7 +2646,7 @@ yes)
# this only occues on mingw
case $host in
*-*-mingw*)
- CFLAGS_NODIST="$CFLAGS_NODIST -Wno-error=incompatible-pointer-types"
+ CFLAGS_NODIST="$CFLAGS_NODIST -Wno-error=incompatible-pointer-types -D__MINGW_USE_VC2005_COMPAT"
;;
esac