Commit 7883dc8a authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

[Patch #772077 from Tim Rice] Fix for compiling the readline module on...

[Patch #772077 from Tim Rice] Fix for compiling the readline module on UnixWare; fix goofy comment indent.  2.3 bugfix candidate
parent 10a44496
...@@ -278,8 +278,8 @@ class PyBuildExt(build_ext): ...@@ -278,8 +278,8 @@ class PyBuildExt(build_ext):
inc_dirs += ['/system/include', '/atheos/autolnk/include'] inc_dirs += ['/system/include', '/atheos/autolnk/include']
inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep) inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep)
# OSF/1 has some stuff in /usr/ccs/lib (like -ldb) # OSF/1 and Unixware have some stuff in /usr/ccs/lib (like -ldb)
if platform == 'osf1': if platform in ['osf1', 'unixware7', 'openunix8']:
lib_dirs += ['/usr/ccs/lib'] lib_dirs += ['/usr/ccs/lib']
# Check for MacOS X, which doesn't need libm.a at all # Check for MacOS X, which doesn't need libm.a at all
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment