diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-10-24 18:26:26 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-10-24 18:26:26 (GMT) |
commit | 7883dc8abb81026fb111b2fde09ba602ccf04226 (patch) | |
tree | aba2a96a3f9d7a73c337427abf6dae7d7eadb0cb | |
parent | 10a444965dd537f4fc0483e960941cfdac8b2e11 (diff) | |
download | cpython-7883dc8abb81026fb111b2fde09ba602ccf04226.zip cpython-7883dc8abb81026fb111b2fde09ba602ccf04226.tar.gz cpython-7883dc8abb81026fb111b2fde09ba602ccf04226.tar.bz2 |
[Patch #772077 from Tim Rice] Fix for compiling the readline module on UnixWare; fix goofy comment indent. 2.3 bugfix candidate
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -278,8 +278,8 @@ class PyBuildExt(build_ext): inc_dirs += ['/system/include', '/atheos/autolnk/include'] inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep) - # OSF/1 has some stuff in /usr/ccs/lib (like -ldb) - if platform == 'osf1': + # OSF/1 and Unixware have some stuff in /usr/ccs/lib (like -ldb) + if platform in ['osf1', 'unixware7', 'openunix8']: lib_dirs += ['/usr/ccs/lib'] # Check for MacOS X, which doesn't need libm.a at all @@ -420,7 +420,7 @@ class PyBuildExt(build_ext): library_dirs=['/usr/lib/termcap'], libraries=readline_libs) ) if platform not in ['mac']: - # crypt module. + # crypt module. if self.compiler.find_library_file(lib_dirs, 'crypt'): libs = ['crypt'] |