aboutsummaryrefslogtreecommitdiffstats
path: root/missing
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-31 17:25:40 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-31 17:25:40 +0000
commit067da76fdf200b53d95af5eeff02696ed412f75f (patch)
treeda93f2cec37eb84a29377b4bafb999cf5bbb7974 /missing
parent814db7c69a56ac7ae0d0f0c2b68eab32d368a6ae (diff)
downloadruby-067da76fdf200b53d95af5eeff02696ed412f75f.tar.gz
crypt.c: fix size macros
* missing/crypt.c: fix size macros to use configured values for platforms long is larger than 32bit. [ruby-core:75792] [Bug #12446] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55233 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing')
-rw-r--r--missing/crypt.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/missing/crypt.c b/missing/crypt.c
index e2dda3ca08..912605a02d 100644
--- a/missing/crypt.c
+++ b/missing/crypt.c
@@ -84,7 +84,7 @@ static char sccsid[] = "@(#)crypt.c 8.1 (Berkeley) 6/4/93";
* define "LONG_IS_32_BITS" only if sizeof(long)==4.
* This avoids use of bit fields (your compiler may be sloppy with them).
*/
-#if !defined(cray)
+#if SIZEOF_LONG == 4
#define LONG_IS_32_BITS
#endif
@@ -92,10 +92,9 @@ static char sccsid[] = "@(#)crypt.c 8.1 (Berkeley) 6/4/93";
* define "B64" to be the declaration for a 64 bit integer.
* XXX this feature is currently unused, see "endian" comment below.
*/
-#if defined(cray)
+#if SIZEOF_LONG == 8
#define B64 long
-#endif
-#if defined(convex)
+#elif SIZEOF_LONG_LONG == 8
#define B64 long long
#endif