Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
72092941
Commit
72092941
authored
Feb 07, 2004
by
Skip Montanaro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
a couple other sunos4 support items removed
parent
ac093c6a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
Doc/lib/libsun.tex
Doc/lib/libsun.tex
+1
-2
setup.py
setup.py
+1
-5
No files found.
Doc/lib/libsun.tex
View file @
72092941
...
@@ -2,5 +2,4 @@
...
@@ -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).
setup.py
View file @
72092941
...
@@ -655,12 +655,8 @@ class PyBuildExt(build_ext):
...
@@ -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, requ
i
ring 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'],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment