Changeset 411

Show
Ignore:
Timestamp:
Fri Jan 18 09:46:25 2008
Author:
danielevarrazzo
Message:

Dynamic library detected and used on Mac OS X platform.

Files:

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 */