Parent Directory | Revision Log | Patch
revision 954 by johnpye, Thu Dec 7 14:47:15 2006 UTC | revision 955 by johnpye, Sat Dec 9 03:45:47 2006 UTC | |
---|---|---|
# | Line 1 | Line 1 |
1 | import os, commands, platform, distutils.sysconfig, os.path, re | import sys, os, commands, platform, distutils.sysconfig, os.path, re |
2 | ||
3 | version = "0.9.5.103" | version = "0.9.5.103" |
4 | ||
# | Line 1292 if env['STATIC_TCLTK']: | Line 1292 if env['STATIC_TCLTK']: |
1292 | # check that we can link to the python library OK: | # check that we can link to the python library OK: |
1293 | ||
1294 | if platform.system()=="Windows": | if platform.system()=="Windows": |
1295 | python_lib='python24' | python_lib='python%d%d' |
1296 | else: | else: |
1297 | python_lib='python2.4' | python_lib='python%d.%d' |
1298 | python_lib = python_lib % (sys.version_info[0],sys.version_info[1]) | |
1299 | ||
1300 | # SWIG version | # SWIG version |
1301 |
|
john.pye@anu.edu.au | ViewVC Help |
Powered by ViewVC 1.1.22 |