diff options
Diffstat (limited to 'ext/Win32API/extconf.rb')
-rw-r--r-- | ext/Win32API/extconf.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/Win32API/extconf.rb b/ext/Win32API/extconf.rb new file mode 100644 index 000000000..5af3243d9 --- /dev/null +++ b/ext/Win32API/extconf.rb @@ -0,0 +1,7 @@ +case PLATFORM +when /cygwin/,/mingw/ + $CFLAGS = "-fno-defer-pop" + create_makefile("Win32API") +when /win32/ + create_makefile("Win32API") +end |