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/branches/ruby_1_8@10409 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9171f6863a
commit
76f1a4f010
3 changed files with 11 additions and 1 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
|
||||
|
@ -10418,7 +10425,7 @@ Sat Apr 24 10:38:31 2004 Dave Thomas <dave@pragprog.com>
|
|||
Fri Apr 23 23:26:13 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb: $hdrdir should not contain macros for backward
|
||||
compatibilitiy. [bruby-dev:28]
|
||||
compatibility. [bruby-dev:28]
|
||||
|
||||
* version.c (ruby_show_copyright): obtain copyright year from
|
||||
RUBY_RELEASE_YEAR.
|
||||
|
|
|
@ -349,6 +349,7 @@ mingw*) if test "$with_winsock2" = yes; then
|
|||
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
|
||||
|
|
|
@ -160,6 +160,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…
Add table
Reference in a new issue