diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-08-16 20:30:18 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-08-16 20:30:18 (GMT) |
commit | 5aa3c4af76a1ed08cf275bb049cfa3ebe9758386 (patch) | |
tree | 4f610dff3440d61db34c59fa3b54bcac7e1eb60b | |
parent | db7aed5219b5c96db0eeb33262f986faa515d6bc (diff) | |
download | cpython-5aa3c4af76a1ed08cf275bb049cfa3ebe9758386.zip cpython-5aa3c4af76a1ed08cf275bb049cfa3ebe9758386.tar.gz cpython-5aa3c4af76a1ed08cf275bb049cfa3ebe9758386.tar.bz2 |
Link readline module with ncurses in preference to termcap. [Bug ##441580]
Remove pointless comment
-rw-r--r-- | setup.py | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -310,7 +310,10 @@ class PyBuildExt(build_ext): # readline if self.compiler.find_library_file(lib_dirs, 'readline'): readline_libs = ['readline'] - if self.compiler.find_library_file(lib_dirs + + if self.compiler.find_library_file(lib_dirs, + 'ncurses'): + readline_libs.append('ncurses') + elif self.compiler.find_library_file(lib_dirs + ['/usr/lib/termcap'], 'termcap'): readline_libs.append('termcap') @@ -318,8 +321,7 @@ class PyBuildExt(build_ext): library_dirs=['/usr/lib/termcap'], libraries=readline_libs) ) - # The crypt module is now disabled by default because it breaks builds - # on many systems (where -lcrypt is needed), e.g. Linux (I believe). + # crypt module. if self.compiler.find_library_file(lib_dirs, 'crypt'): libs = ['crypt'] |