diff options
author | Rich Salz <rsalz@openssl.org> | 2015-01-12 10:40:00 -0500 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-01-12 10:40:00 -0500 |
commit | fcf64ba0ace1bb76c6e00ca7d0c7cf7f9bebe628 (patch) | |
tree | f311339b47723c214fbd10684e85f06daa74cc32 /crypto/md4 | |
parent | 9405a9a2e1594cea9c963c29d9898bb03cb0f24f (diff) | |
download | openssl-new-fcf64ba0ace1bb76c6e00ca7d0c7cf7f9bebe628.tar.gz |
RT3548: Remove some unsupported platforms.
This commit removes NCR, Tandem, Cray.
Regenerates TABLE.
Removes another missing BEOS fluff.
The last platform remaining on this ticket is WIN16.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/md4')
-rw-r--r-- | crypto/md4/md4.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/crypto/md4/md4.h b/crypto/md4/md4.h index 631c1b2ee0..d5b6307bff 100644 --- a/crypto/md4/md4.h +++ b/crypto/md4/md4.h @@ -79,16 +79,9 @@ extern "C" { #if defined(__LP32__) #define MD4_LONG unsigned long -#elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) +#elif defined(__ILP64__) #define MD4_LONG unsigned long #define MD4_LONG_LOG2 3 -/* - * _CRAY note. I could declare short, but I have no idea what impact - * does it have on performance on none-T3E machines. I could declare - * int, but at least on C90 sizeof(int) can be chosen at compile time. - * So I've chosen long... - * <appro@fy.chalmers.se> - */ #else #define MD4_LONG unsigned int #endif |