0530-msys-mingw-prefer-unix-sep-if-MSYSTEM.patch
0535-msys-cygwin-semi-native-build-sysconfig.patch
Add a bug-fix from Arch Linux mingw-w64-python 2.7.6
for a memory stomp.
Fix python{3.3m}-config.sh to return correct values.
Tidy up the PKGBUILD files.
13 lines
520 B
Diff
13 lines
520 B
Diff
diff -urN a/setup.py b/setup.py
|
|
--- a/setup.py 2014-01-22 20:57:32.952318468 +0000
|
|
+++ b/setup.py 2014-01-22 20:57:33.438992662 +0000
|
|
@@ -1326,7 +1326,7 @@
|
|
|
|
dbm_order = ['gdbm']
|
|
# The standard Unix dbm module:
|
|
- if host_platform not in ['cygwin']:
|
|
+ if host_platform not in ['cygwin', 'mingw', 'win32']:
|
|
config_args = [arg.strip("'")
|
|
for arg in sysconfig.get_config_var("CONFIG_ARGS").split()]
|
|
dbm_args = [arg for arg in config_args
|