1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* win32/Makefile.sub (config.h): define SIZE_MAX for VC++6/7.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19240 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-09-08 09:09:41 +00:00
parent 9ae4b8bbfe
commit 80de18922e
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Mon Sep 8 18:09:07 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/Makefile.sub (config.h): define SIZE_MAX for VC++6/7.
Mon Sep 8 17:46:09 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (filetime_to_unixtime): remove unused variable.

View file

@ -355,6 +355,9 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub $(win_srcdir)/Makefile.sub
#define SIZEOF_SIZE_T 4
#define SIZEOF_PTRDIFF_T 4
!endif
!if $(MSC_VER) < 1400
#define SIZE_MAX UINT_MAX
!endif
#define HAVE_PROTOTYPES 1
#define TOKEN_PASTE(x,y) x##y
#define HAVE_STDARG_PROTOTYPES 1