]> granicus.if.org Git - python/commitdiff
a couple other sunos4 support items removed
authorSkip Montanaro <skip@pobox.com>
Sat, 7 Feb 2004 12:50:19 +0000 (12:50 +0000)
committerSkip Montanaro <skip@pobox.com>
Sat, 7 Feb 2004 12:50:19 +0000 (12:50 +0000)
Doc/lib/libsun.tex
setup.py

index 25826cd733fb21df5ae2d23736fd2a9fd51da598..1472509e16d0da0992b3580cc2fa8c844f3bddca 100644 (file)
@@ -2,5 +2,4 @@
 \label{sunos}
 
 The modules described in this chapter provide interfaces to features
-that are unique to the SunOS operating system (versions 4 and 5; the
-latter is also known as Solaris version 2).
+that are unique to SunOS 5 (also known as Solaris version 2).
index 8439ef45f01cada6d5c48040d813d99f57ece635..41731c60f4c3af9bf83059601bb079f2d8fcb7c5 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -655,12 +655,8 @@ class PyBuildExt(build_ext):
                 exts.append( Extension('nis', ['nismodule.c'],
                                        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.
-        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'],