Changeset 1151
- Timestamp:
- May 26, 2017, 10:18:42 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified python/trunk/setup.py ¶
r977 r1151 558 558 # Check for MacOS X, which doesn't need libm.a at all 559 559 math_libs = ['m'] 560 if host_platform in ['os2knix']:561 math_libs.append('cx')562 560 if host_platform in ['darwin', 'beos']: 563 561 math_libs = [] … … 674 672 675 673 # Memory-mapped files (also works on Win32). 676 if host_platform in ['os2knix']: 677 exts.append( Extension('mmap', ['mmapmodule.c'], libraries=['cx']) ) 678 elif host_platform not in ['atheos']: 674 if host_platform not in ['atheos']: 679 675 exts.append( Extension('mmap', ['mmapmodule.c']) ) 680 676 else: … … 817 813 include_dirs = ssl_incs, 818 814 library_dirs = ssl_libs, 819 libraries = ['ssl', 'crypto' , 'cx'],815 libraries = ['ssl', 'crypto'], 820 816 depends = ['socketmodule.h']), ) 821 817 else:
Note:
See TracChangeset
for help on using the changeset viewer.