Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aabbd3d commit 2d1c2dbCopy full SHA for 2d1c2db
1 file changed
setupext.py
@@ -402,6 +402,11 @@ def add_tk_flags(module):
402
module.include_dirs.extend(['win32_static/include/tcl84'])
403
module.library_dirs.extend(['C:/Python24/dlls'])
404
module.libraries.extend(['tk84', 'tcl84'])
405
+ elif major==2 and minor1==5:
406
+ print '\tBuilding for python25'
407
+ module.include_dirs.extend(['win32_static/include/tcl84'])
408
+ module.library_dirs.extend(['C:/Python25/dlls'])
409
+ module.libraries.extend(['tk84', 'tcl84'])
410
elif major==2 and minor1==2:
411
print '\tBuilding for python22'
412
module.include_dirs.extend(['win32_static/include/tcl83'])
0 commit comments