Menu

[r8174]: / branches / mathtex / release / win32 / data / setupwin.py  Maximize  Restore  History

Download this file

13 lines (9 with data), 231 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
from distutils import cygwinccompiler
try:
# Python 2.6
# Replace the msvcr func to return an []
cygwinccompiler.get_msvcr
cygwinccompiler.get_msvcr = lambda: []
except AttributeError:
pass
execfile('setup.py')