diff options
author | Skip Montanaro <skip@pobox.com> | 2004-01-17 14:19:44 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2004-01-17 14:19:44 (GMT) |
commit | ce59c04127cb82127e247f5e986b07cbb6c39c61 (patch) | |
tree | 75b910d56a7b8f039e99c2cf6156c061124ef1e8 /Misc | |
parent | 09de7567269af82164ec7dd0c5edf3ec6d1b7502 (diff) | |
download | cpython-ce59c04127cb82127e247f5e986b07cbb6c39c61.zip cpython-ce59c04127cb82127e247f5e986b07cbb6c39c61.tar.gz cpython-ce59c04127cb82127e247f5e986b07cbb6c39c61.tar.bz2 |
Remove support for SunOS 4.
Remove BAD_EXEC_PROTOYPE (leftover from IRIX 4 demolition).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/BeOS-setup.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Misc/BeOS-setup.py b/Misc/BeOS-setup.py index 53b62b7..438daa7 100644 --- a/Misc/BeOS-setup.py +++ b/Misc/BeOS-setup.py @@ -401,10 +401,6 @@ class PyBuildExt(build_ext): # Curses support, requring the System V version of curses, often # provided by the ncurses library. - if platform == 'sunos4': - inc_dirs += ['/usr/5include'] - lib_dirs += ['/usr/5lib'] - if (self.compiler.find_library_file(lib_dirs, 'ncurses')): curses_libs = ['ncurses'] exts.append( Extension('_curses', ['_cursesmodule.c'], |