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 (config.h): define uint32_t.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15763 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-03-13 10:58:32 +00:00
parent fab87736fd
commit cb912bc64d
3 changed files with 8 additions and 1 deletions

View file

@ -1,6 +1,11 @@
Thu Mar 13 19:42:43 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* {bcc,win}32/Makefile.sub (config.h): define uint32_t.
Thu Mar 13 14:14:19 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> Thu Mar 13 14:14:19 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* trunk/configure.in (AC_CHECK_HEADERS): stdint.h is not needed to check. * trunk/configure.in (AC_CHECK_HEADERS): stdint.h is not needed to
check.
* trunk/configure.in (rb_cv_type_uint32_t): unqouted. [ruby-dev:34030] * trunk/configure.in (rb_cv_type_uint32_t): unqouted. [ruby-dev:34030]

View file

@ -282,6 +282,7 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/bcc32/Makefile.sub
\#define rb_uid_t uid_t \#define rb_uid_t uid_t
\#define rb_gid_t gid_t \#define rb_gid_t gid_t
\#define rb_pid_t int \#define rb_pid_t int
\#define uint32_t unsigned int
\#define HAVE_STRUCT_STAT_ST_RDEV 1 \#define HAVE_STRUCT_STAT_ST_RDEV 1
\#define HAVE_ST_RDEV 1 \#define HAVE_ST_RDEV 1
\#define GETGROUPS_T int \#define GETGROUPS_T int

View file

@ -365,6 +365,7 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub $(win_srcdir)/Makefile.sub
#define rb_pid_t int #define rb_pid_t int
#define rb_gid_t int #define rb_gid_t int
#define rb_uid_t int #define rb_uid_t int
#define uint32_t unsigned int
#define HAVE_STRUCT_STAT_ST_RDEV 1 #define HAVE_STRUCT_STAT_ST_RDEV 1
#define HAVE_ST_RDEV 1 #define HAVE_ST_RDEV 1
#define GETGROUPS_T int #define GETGROUPS_T int