mirror of https://github.com/python/cpython.git
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.
This commit is contained in:
parent
72a2b4d43f
commit
1e1542fcff
|
@ -30,18 +30,14 @@ documentation and/or software.
|
||||||
/* POINTER defines a generic pointer type */
|
/* POINTER defines a generic pointer type */
|
||||||
typedef unsigned char *POINTER;
|
typedef unsigned char *POINTER;
|
||||||
|
|
||||||
/* UINT2 defines a two byte word */
|
|
||||||
typedef unsigned short int UINT2;
|
|
||||||
|
|
||||||
/* UINT4 defines a four byte word */
|
/* UINT4 defines a four byte word */
|
||||||
#if SIZEOF_LONG == 4
|
#if SIZEOF_LONG == 4
|
||||||
typedef unsigned long int UINT4;
|
typedef unsigned long int UINT4;
|
||||||
#else
|
#elif SIZEOF_SHORT == 4
|
||||||
#if INT_MAX == 2147483647
|
typedef unsigned short int UINT4;
|
||||||
|
#elif INT_MAX == 2147483647
|
||||||
typedef unsigned int UINT4;
|
typedef unsigned int UINT4;
|
||||||
#endif
|
#endif
|
||||||
/* Too bad if neither is; pyport.h would need to be fixed. */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* ========== End global.h; continue md5.h ========== */
|
/* ========== End global.h; continue md5.h ========== */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue