Skip to content

Commit

Permalink
* win32/win32.h: define isascii on MinGW for msvcrt compatibility.
Browse files Browse the repository at this point in the history
* configure.in: set ac_cv_header_sys_time_h=no on MinGW
  for msvcrt compatibility.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10409 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
eban committed Jun 27, 2006
1 parent 6de2f53 commit 3ea6beb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Tue Jun 27 16:04:05 2006 WATANABE Hirofumi <[email protected]>

* win32/win32.h: define isascii on MinGW for msvcrt compatibility.

* configure.in: set ac_cv_header_sys_time_h=no on MinGW
for msvcrt compatibility.

Tue Jun 27 11:36:02 2006 Nobuyoshi Nakada <[email protected]>

* ext/etc/etc.c (setup_passwd, setup_group): allow bignum uid, gid and
Expand Down
1 change: 1 addition & 0 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,7 @@ mingw*) LIBS="-lshell32 -lws2_32 $LIBS"
ac_cv_header_sys_param_h=no
ac_cv_header_sys_resource_h=no
ac_cv_header_sys_select_h=no
ac_cv_header_sys_time_h=no
ac_cv_header_sys_times_h=no
ac_cv_func_times=yes
ac_cv_func_waitpid=yes
Expand Down
2 changes: 2 additions & 0 deletions win32/win32.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ struct timezone {
int tz_minuteswest;
int tz_dsttime;
};
#undef isascii
#define isascii __isascii
#endif
extern void NtInitialize(int *, char ***);
extern int rb_w32_cmdvector(const char *, char ***);
Expand Down

0 comments on commit 3ea6beb

Please sign in to comment.