15 lines
603 B
Diff
15 lines
603 B
Diff
diff -Naur Python-3.5.0-orig/setup.py Python-3.5.0/setup.py
|
|
--- Python-3.5.0-orig/setup.py 2015-09-21 13:42:34.882339200 +0300
|
|
+++ Python-3.5.0/setup.py 2015-09-21 13:42:53.935354400 +0300
|
|
@@ -1632,6 +1632,10 @@
|
|
'-framework', 'CoreFoundation',
|
|
]))
|
|
|
|
+ if host_platform.startswith(('mingw', 'win')):
|
|
+ exts.append( Extension('_overlapped', ['overlapped.c'],
|
|
+ libraries=['ws2_32']))
|
|
+
|
|
self.extensions.extend(exts)
|
|
|
|
# Call the method for detecting whether _tkinter can be compiled
|