Changeset 411
- Timestamp:
- Fri Jan 18 09:46:25 2008
- Files:
-
- branches/dl/bindepend.py (modified) (diff)
- branches/dl/source/common/launch.c (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
branches/dl/bindepend.py
r336 r411 277 277 npth = getfullnameof(lib, os.path.dirname(pth)) 278 278 if excludesRe.search(npth): 279 if 'libpython' not in npth: 279 if 'libpython' not in npth and 'Python.framework' not in npth: 279 279 continue 280 280 if seen.get(string.upper(lib),0): -
branches/dl/source/common/launch.c
r409 r411 371 371 372 372 /* Determine the path */ 373 #ifdef __APPLE__ 374 sprintf(dllpath, "%sPython", f_homepath); 375 #else 373 376 sprintf(dllpath, "%slibpython%01d.%01d.so.1.0", f_homepath, 374 377 ntohl(f_cookie.pyvers) / 10, ntohl(f_cookie.pyvers) % 10); 378 #endif 375 379 376 380 /* Load the DLL */
