summaryrefslogtreecommitdiffstats
path: root/Misc/BeOS-setup.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-31 13:37:25 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-08-31 13:37:25 (GMT)
commit57269d0c7c7a6fc989fcbef5b82853aa36fb44ca (patch)
tree0264caed454732d8cfaf34f4766e24b813a784f8 /Misc/BeOS-setup.py
parent810b76aebeadd44d4fcf35595cda8bce87a77103 (diff)
downloadcpython-57269d0c7c7a6fc989fcbef5b82853aa36fb44ca.zip
cpython-57269d0c7c7a6fc989fcbef5b82853aa36fb44ca.tar.gz
cpython-57269d0c7c7a6fc989fcbef5b82853aa36fb44ca.tar.bz2
Remove mpz, rotor, xreadlines modules
Diffstat (limited to 'Misc/BeOS-setup.py')
-rw-r--r--Misc/BeOS-setup.py23
1 files changed, 1 insertions, 22 deletions
diff --git a/Misc/BeOS-setup.py b/Misc/BeOS-setup.py
index 8d4b7b6..07dbe15 100644
--- a/Misc/BeOS-setup.py
+++ b/Misc/BeOS-setup.py
@@ -180,7 +180,6 @@ class PyBuildExt(build_ext):
exts.append( Extension('_weakref', ['_weakref.c']) )
exts.append( Extension('_symtable', ['symtablemodule.c']) )
- exts.append( Extension('xreadlines', ['xreadlinesmodule.c']) )
# array objects
exts.append( Extension('array', ['arraymodule.c']) )
@@ -244,10 +243,7 @@ class PyBuildExt(build_ext):
# Memory-mapped files (also works on Win32).
exts.append( Extension('mmap', ['mmapmodule.c']) )
- # Lance Ellinghaus's modules:
- # enigma-inspired encryption
- exts.append( Extension('rotor', ['rotormodule.c']) )
- # syslog daemon interface
+ # Lance Ellinghaus's syslog daemon interface
exts.append( Extension('syslog', ['syslogmodule.c']) )
# George Neville-Neil's timing module:
@@ -361,23 +357,6 @@ class PyBuildExt(build_ext):
include_dirs = db_inc,
libraries = dblib) )
- # The mpz module interfaces to the GNU Multiple Precision library.
- # You need to ftp the GNU MP library.
- # This was originally written and tested against GMP 1.2 and 1.3.2.
- # It has been modified by Rob Hooft to work with 2.0.2 as well, but I
- # haven't tested it recently. For a more complete module,
- # refer to pympz.sourceforge.net.
-
- # A compatible MP library unencombered by the GPL also exists. It was
- # posted to comp.sources.misc in volume 40 and is widely available from
- # FTP archive sites. One URL for it is:
- # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
-
- if (self.compiler.find_library_file(lib_dirs, 'gmp')):
- exts.append( Extension('mpz', ['mpzmodule.c'],
- libraries = ['gmp'] ) )
-
-
# Unix-only modules
if platform not in ['mac', 'win32']:
# Steen Lumholt's termios module