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

* {bcc,win}32/Makefile.sub: follow below changes.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15774 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-03-14 02:35:24 +00:00
parent 05eeb60259
commit bc8c8e90d5
3 changed files with 21 additions and 10 deletions

View file

@ -1,3 +1,7 @@
Fri Mar 14 11:34:12 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* {bcc,win}32/Makefile.sub: follow below changes.
Fri Mar 14 11:24:30 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* misc/ruby-mode.el (ruby-encoding-map, ruby-use-encoding-map): added

View file

@ -282,9 +282,25 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/bcc32/Makefile.sub
\#define rb_uid_t uid_t
\#define rb_gid_t gid_t
\#define rb_pid_t int
\#define uint32_t unsigned int
\#define HAVE_STRUCT_STAT_ST_RDEV 1
\#define HAVE_ST_RDEV 1
\#define int8_t signed char
\#define HAVE_UINT8_T 1
\#define uint8_t unsigned char
\#define HAVE_INT16_T 1
\#define int16_t short
\#define HAVE_UINT16_T 1
\#define uint16_t unsigned short
\#define HAVE_INT32_T 1
\#define int32_t int
\#define HAVE_UINT32_T 1
\#define uint32_t unsigned int
\#define HAVE_INT64_T HAVE_LONG_LONG
\#define int64_t __int64
\#define HAVE_UINT64_T HAVE_LONG_LONG
\#define uint64_t unsigned __int64
\#define HAVE_INTPTR_T 1
\#define HAVE_UINTPTR_T 1
\#define GETGROUPS_T int
\#define RETSIGTYPE void
\#define HAVE_ALLOCA 1

View file

@ -365,7 +365,6 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub $(win_srcdir)/Makefile.sub
#define rb_pid_t int
#define rb_gid_t int
#define rb_uid_t int
#define uint32_t unsigned int
#define HAVE_STRUCT_STAT_ST_RDEV 1
#define HAVE_ST_RDEV 1
#define int8_t signed char
@ -385,14 +384,6 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub $(win_srcdir)/Makefile.sub
#define uint64_t unsigned __int64
#define HAVE_INTPTR_T 1
#define HAVE_UINTPTR_T 1
!if "$(ARCH)" == "x64" || "$(ARCH)" == "ia64"
#define intptr_t __int64
#define uintptr_t unsigned __int64
!else
#define intptr_t long
#define uintptr_t unsigned long
!endif
#endif
#define GETGROUPS_T int
#define RETSIGTYPE void
!if !defined(WIN32_WCE)