diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-06-27 07:21:31 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-06-27 07:21:31 +0000 |
| commit | 00d6d957cd395bdeeaccd72e99042ef4e1b1e0ca (patch) | |
| tree | 324fbaff6302e32d874a3bc8fd37a652ef941df6 /win32 | |
| parent | 1b0adfa9aa957359e72f19e0187b5f6aef9124cc (diff) | |
| download | ruby-00d6d957cd395bdeeaccd72e99042ef4e1b1e0ca.tar.gz ruby-00d6d957cd395bdeeaccd72e99042ef4e1b1e0ca.tar.xz ruby-00d6d957cd395bdeeaccd72e99042ef4e1b1e0ca.zip | |
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@10409 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/win32.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win32/win32.h b/win32/win32.h index 7991996db..477937bbd 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -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 ***); |
