From efe25b97c95aae825244f425ce6f36a5456069d2 Mon Sep 17 00:00:00 2001 From: ocean Date: Mon, 12 Apr 2004 01:30:15 +0000 Subject: * bcc32/Makefile.sub: backport SIZEOF_TIME_T definition from 1.9. * win32/Makefile.sub: ditto. * wince/Makefile.sub: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6140 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++++++ bcc32/Makefile.sub | 1 + win32/Makefile.sub | 1 + wince/Makefile.sub | 1 + 4 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index e1f7f632a..573b0466a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Mon Apr 12 10:27:37 Hirokazu Yamamoto + + * bcc32/Makefile.sub: backport SIZEOF_TIME_T definition from 1.9. + + * win32/Makefile.sub: ditto. + + * wince/Makefile.sub: ditto. + Sun Apr 11 19:12:35 2004 Nobuyoshi Nakada * ruby.c (require_libraries): restore source file/line after diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index 694089097..446dd55c2 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -224,6 +224,7 @@ config.h: \#define SIZEOF_VOIDP 4 \#define SIZEOF_FLOAT 4 \#define SIZEOF_DOUBLE 8 +\#define SIZEOF_TIME_T 4 \#define HAVE_PROTOTYPES 1 \#define TOKEN_PASTE(x,y) x\#\#y \#define HAVE_STDARG_PROTOTYPES 1 diff --git a/win32/Makefile.sub b/win32/Makefile.sub index f3d3cffd2..deddd3e76 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -217,6 +217,7 @@ config.h: #define SIZEOF_VOIDP 4 #define SIZEOF_FLOAT 4 #define SIZEOF_DOUBLE 8 +#define SIZEOF_TIME_T 4 #define HAVE_PROTOTYPES 1 #define TOKEN_PASTE(x,y) x##y #define HAVE_STDARG_PROTOTYPES 1 diff --git a/wince/Makefile.sub b/wince/Makefile.sub index 8954334b2..b7864d03b 100644 --- a/wince/Makefile.sub +++ b/wince/Makefile.sub @@ -231,6 +231,7 @@ config.h: #define SIZEOF_VOIDP 4 #define SIZEOF_FLOAT 4 #define SIZEOF_DOUBLE 8 +#define SIZEOF_TIME_T 4 #define HAVE_PROTOTYPES 1 #define TOKEN_PASTE(x,y) x##y #define HAVE_STDARG_PROTOTYPES 1 -- cgit