14 lines
543 B
Diff
14 lines
543 B
Diff
--- Python-3.4.3/setup.py.orig 2015-06-06 18:25:01.420100800 +0100
|
|
+++ Python-3.4.3/setup.py 2015-06-07 09:09:55.336907600 +0100
|
|
@@ -1612,6 +1612,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
|