diff options
author | Georg Brandl <georg@python.org> | 2006-08-06 07:26:21 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-08-06 07:26:21 (GMT) |
commit | 534fe18e171a41ac216f3eeb1794af61adf50c5b (patch) | |
tree | bf77ddda5b986a03ecc333ecd50c894b9aa1d67f | |
parent | 9908d1656c5ee845f3039eb5eaef59582df1666d (diff) | |
download | cpython-534fe18e171a41ac216f3eeb1794af61adf50c5b.zip cpython-534fe18e171a41ac216f3eeb1794af61adf50c5b.tar.gz cpython-534fe18e171a41ac216f3eeb1794af61adf50c5b.tar.bz2 |
Bug #1535081: A leading underscore has been added to the names of
the md5 and sha modules, so add it in Modules/Setup.dist too.
-rw-r--r-- | Modules/Setup.dist | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Modules/Setup.dist b/Modules/Setup.dist index 1b2502d..46f4253 100644 --- a/Modules/Setup.dist +++ b/Modules/Setup.dist @@ -59,7 +59,7 @@ # # In addition, *static* explicitly declares the following modules to # be static. Lines containing "*static*" and "*shared*" may thus -# alternate thoughout this file. +# alternate throughout this file. # NOTE: As a standard policy, as many modules as can be supported by a # platform should be present. The distribution comes with all modules @@ -234,16 +234,19 @@ GLHACK=-Dclear=__GLclear #rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably) -# The md5 module implements the RSA Data Security, Inc. MD5 +# Note that the _md5 and _sha modules are normally only built if the +# system does not have the OpenSSL libs containing an optimized version. + +# The _md5 module implements the RSA Data Security, Inc. MD5 # Message-Digest Algorithm, described in RFC 1321. The necessary files # md5.c and md5.h are included here. -#md5 md5module.c md5.c +#_md5 md5module.c md5.c -# The sha module implements the SHA checksum algorithm. +# The _sha module implements the SHA checksum algorithm. # (NIST's Secure Hash Algorithm.) -#sha shamodule.c +#_sha shamodule.c # SGI IRIX specific modules -- off by default. |