mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
a couple other sunos4 support items removed
This commit is contained in:
parent
ac093c6af0
commit
7209294112
2 changed files with 2 additions and 7 deletions
|
|
@ -2,5 +2,4 @@
|
||||||
\label{sunos}
|
\label{sunos}
|
||||||
|
|
||||||
The modules described in this chapter provide interfaces to features
|
The modules described in this chapter provide interfaces to features
|
||||||
that are unique to the SunOS operating system (versions 4 and 5; the
|
that are unique to SunOS 5 (also known as Solaris version 2).
|
||||||
latter is also known as Solaris version 2).
|
|
||||||
|
|
|
||||||
6
setup.py
6
setup.py
|
|
@ -655,12 +655,8 @@ class PyBuildExt(build_ext):
|
||||||
exts.append( Extension('nis', ['nismodule.c'],
|
exts.append( Extension('nis', ['nismodule.c'],
|
||||||
libraries = libs) )
|
libraries = libs) )
|
||||||
|
|
||||||
# Curses support, requring the System V version of curses, often
|
# Curses support, requiring the System V version of curses, often
|
||||||
# provided by the ncurses library.
|
# 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')):
|
if (self.compiler.find_library_file(lib_dirs, 'ncurses')):
|
||||||
curses_libs = ['ncurses']
|
curses_libs = ['ncurses']
|
||||||
exts.append( Extension('_curses', ['_cursesmodule.c'],
|
exts.append( Extension('_curses', ['_cursesmodule.c'],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue