From 98696bd2427a3c96640a8ff809d0047616bdcaad Mon Sep 17 00:00:00 2001 From: nagachika Date: Wed, 28 Dec 2011 16:56:16 +0000 Subject: * include/ruby/ruby.h: fix #error pragma. LLP64 platform is supported. * include/ruby/st.h: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34153 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/ruby.h | 2 +- include/ruby/st.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index 7e534eb1ff..0748db91be 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -98,7 +98,7 @@ typedef unsigned LONG_LONG ID; # define SIZEOF_VALUE SIZEOF_LONG_LONG # define PRI_VALUE_PREFIX PRI_LL_PREFIX #else -# error ---->> ruby requires sizeof(void*) == sizeof(long) to be compiled. <<---- +# error ---->> ruby requires sizeof(void*) == sizeof(long) or sizeof(LONG_LONG) to be compiled. <<---- #endif typedef char ruby_check_sizeof_int[SIZEOF_INT == sizeof(int) ? 1 : -1]; diff --git a/include/ruby/st.h b/include/ruby/st.h index ff3da2a9c2..695fbf9cb9 100644 --- a/include/ruby/st.h +++ b/include/ruby/st.h @@ -36,7 +36,7 @@ typedef unsigned long st_data_t; #elif SIZEOF_LONG_LONG == SIZEOF_VOIDP typedef unsigned LONG_LONG st_data_t; #else -# error ---->> st.c requires sizeof(void*) == sizeof(long) to be compiled. <<---- +# error ---->> st.c requires sizeof(void*) == sizeof(long) or sizeof(LONG_LONG) to be compiled. <<---- #endif #define ST_DATA_T_DEFINED -- cgit v1.2.3