mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10409 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6de2f53f98
commit
3ea6bebbad
3 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
Tue Jun 27 16:04:05 2006 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* 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 <nobu@ruby-lang.org>
|
||||
|
||||
* ext/etc/etc.c (setup_passwd, setup_group): allow bignum uid, gid and
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 ***);
|
||||
|
|
Loading…
Reference in a new issue