summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/matplotlib/files/matplotlib-0.87.4-fix-bad-win32-detect.patch')
-rw-r--r--dev-python/matplotlib/files/matplotlib-0.87.4-fix-bad-win32-detect.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/dev-python/matplotlib/files/matplotlib-0.87.4-fix-bad-win32-detect.patch b/dev-python/matplotlib/files/matplotlib-0.87.4-fix-bad-win32-detect.patch
deleted file mode 100644
index 38958567bf23..000000000000
--- a/dev-python/matplotlib/files/matplotlib-0.87.4-fix-bad-win32-detect.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- setupext.py~ 2006-07-10 18:55:59.000000000 +0100
-+++ setupext.py 2006-07-17 16:47:19.000000000 +0100
-@@ -116,7 +116,8 @@
- return 'mingw32'
- return 'msvc'
- win32_compiler = get_win32_compiler()
--if win32_compiler == 'msvc':
-+
-+if sys.platform == 'win32' and win32_compiler == 'msvc':
- std_libs = []
- else:
- std_libs = ['stdc++', 'm']