diff options
author | Michael W. Hudson <mwh@python.net> | 2002-05-29 10:32:24 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-05-29 10:32:24 (GMT) |
commit | 1e1542fcff7d7796f8e88eb3954cc182c7161c51 (patch) | |
tree | 7b5180ea62e16c1fb938a73011602c7fe8b65dcb /Modules | |
parent | 72a2b4d43f3bdca9f4f32033e62d1cd0e201b792 (diff) | |
download | cpython-1e1542fcff7d7796f8e88eb3954cc182c7161c51.zip cpython-1e1542fcff7d7796f8e88eb3954cc182c7161c51.tar.gz cpython-1e1542fcff7d7796f8e88eb3954cc182c7161c51.tar.bz2 |
This is patch
[ 558914 ] Build md5.c fails on Cray T3E
I've also deleted a comment that I didn't understand. Feel free to
put it back if it makes/made sense to you.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/md5.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Modules/md5.h b/Modules/md5.h index e169f77..2b6d25b 100644 --- a/Modules/md5.h +++ b/Modules/md5.h @@ -30,18 +30,14 @@ documentation and/or software. /* POINTER defines a generic pointer type */ typedef unsigned char *POINTER; -/* UINT2 defines a two byte word */ -typedef unsigned short int UINT2; - /* UINT4 defines a four byte word */ #if SIZEOF_LONG == 4 typedef unsigned long int UINT4; -#else -#if INT_MAX == 2147483647 +#elif SIZEOF_SHORT == 4 +typedef unsigned short int UINT4; +#elif INT_MAX == 2147483647 typedef unsigned int UINT4; #endif -/* Too bad if neither is; pyport.h would need to be fixed. */ -#endif /* ========== End global.h; continue md5.h ========== */ |