* 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
@ -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>
|
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
|
* 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_param_h=no
|
||||||
ac_cv_header_sys_resource_h=no
|
ac_cv_header_sys_resource_h=no
|
||||||
ac_cv_header_sys_select_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_header_sys_times_h=no
|
||||||
ac_cv_func_times=yes
|
ac_cv_func_times=yes
|
||||||
ac_cv_func_waitpid=yes
|
ac_cv_func_waitpid=yes
|
||||||
|
@ -157,6 +157,8 @@ struct timezone {
|
|||||||
int tz_minuteswest;
|
int tz_minuteswest;
|
||||||
int tz_dsttime;
|
int tz_dsttime;
|
||||||
};
|
};
|
||||||
|
#undef isascii
|
||||||
|
#define isascii __isascii
|
||||||
#endif
|
#endif
|
||||||
extern void NtInitialize(int *, char ***);
|
extern void NtInitialize(int *, char ***);
|
||||||
extern int rb_w32_cmdvector(const char *, char ***);
|
extern int rb_w32_cmdvector(const char *, char ***);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user