Changeset 5138
- Timestamp:
- Mar 7, 2008, 4:29:05 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/utilities/compile.py
r5133 r5138 130 130 sharedflag = 'shared' 131 131 132 libext = 'dll' 132 # As of python2.5, .pyd is the extension for python extension 133 # modules. 134 if sys.version_info[0:2] >= (2, 5): 135 libext = 'pyd' 136 else: 137 libext = 'dll' 133 138 134 139 libs, is_found = set_python_dll_path()
Note: See TracChangeset
for help on using the changeset viewer.