diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-05-13 16:13:31 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-05-13 16:13:31 +0000 |
| commit | 3d9582b7f1fe2647d0d68ab55ccc2223c7cbd389 (patch) | |
| tree | 3a84f886c14e2a9a8fe65c664b4f4805e2cbc2d4 /ext/Win32API | |
| parent | a6dcd4ff38476c301f3385a3999fb6452bd462c7 (diff) | |
| download | ruby-3d9582b7f1fe2647d0d68ab55ccc2223c7cbd389.tar.gz ruby-3d9582b7f1fe2647d0d68ab55ccc2223c7cbd389.tar.xz ruby-3d9582b7f1fe2647d0d68ab55ccc2223c7cbd389.zip | |
support mingw32.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@688 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/Win32API')
| -rw-r--r-- | ext/Win32API/Win32API.c | 2 | ||||
| -rw-r--r-- | ext/Win32API/extconf.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/Win32API/Win32API.c b/ext/Win32API/Win32API.c index 27693c725..3f0ceae9e 100644 --- a/ext/Win32API/Win32API.c +++ b/ext/Win32API/Win32API.c @@ -2,7 +2,7 @@ Win32API - Ruby Win32 API Import Facility */ -#ifndef _MSC_VER +#if !defined _MSC_VER && !defined NT #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <stdio.h> diff --git a/ext/Win32API/extconf.rb b/ext/Win32API/extconf.rb index 5af3243d9..f8d78e146 100644 --- a/ext/Win32API/extconf.rb +++ b/ext/Win32API/extconf.rb @@ -1,4 +1,4 @@ -case PLATFORM +case RUBY_PLATFORM when /cygwin/,/mingw/ $CFLAGS = "-fno-defer-pop" create_makefile("Win32API") |
