Changeset 1151


Ignore:
Timestamp:
May 26, 2017, 10:18:42 PM (8 years ago)
Author:
dmik
Message:

python: Remove LIBCx from the list of module libraries.

Partly undoes r977. LIBCx is intended as a drop-in replacement and
should be passed in LDFLAGS so that every shared python module
is linked against it as well as the main python DLL and launcher.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified python/trunk/setup.py

    r977 r1151  
    558558        # Check for MacOS X, which doesn't need libm.a at all
    559559        math_libs = ['m']
    560         if host_platform in ['os2knix']:
    561             math_libs.append('cx')
    562560        if host_platform in ['darwin', 'beos']:
    563561            math_libs = []
     
    674672
    675673        # 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']:
    679675            exts.append( Extension('mmap', ['mmapmodule.c']) )
    680676        else:
     
    817813                                   include_dirs = ssl_incs,
    818814                                   library_dirs = ssl_libs,
    819                                    libraries = ['ssl', 'crypto', 'cx'],
     815                                   libraries = ['ssl', 'crypto'],
    820816                                   depends = ['socketmodule.h']), )
    821817        else:
Note: See TracChangeset for help on using the changeset viewer.