diff options
author | Guido van Rossum <guido@python.org> | 1999-03-24 19:03:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-03-24 19:03:59 (GMT) |
commit | 29d2acc17096bd63d882a87591d336ea5682eab9 (patch) | |
tree | 02f0d2c2134b98408d2108a4821eee95c1b20e87 /Modules/Setup.in | |
parent | 4ec26987256c742c6f8ae0b25d85a5da699d766c (diff) | |
download | cpython-29d2acc17096bd63d882a87591d336ea5682eab9.zip cpython-29d2acc17096bd63d882a87591d336ea5682eab9.tar.gz cpython-29d2acc17096bd63d882a87591d336ea5682eab9.tar.bz2 |
Added Greg Stein and Andrew Kuchling's sha module.
Fix comments about zlib version and URL.
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 43e175b..ca307bf 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -199,6 +199,11 @@ errno errnomodule.c # posix (UNIX) errno values md5 md5module.c md5c.c +# The sha module implements the SHA checksum algorithm. +# (NIST's Secure Hash Algorithm.) +sha shamodule.c + + # The mpz module interfaces to the GNU Multiple Precision library. # You need to ftp the GNU MP library. # The GMP variable must point to the GMP source directory. @@ -399,7 +404,7 @@ cPickle cPickle.c #fpetest fpetestmodule.c # Andrew Kuchling's zlib module. -# This require zlib 1.0.4 (or later). See http://quest.jpl.nasa.gov/zlib/ +# This require zlib 1.1.3 (or later). # See http://www.cdrom.com/pub/infozip/zlib/ #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz |