1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/ext/Win32API/extconf.rb
matz 9c1657f302 cygwin patches
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@83 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1998-02-18 10:01:47 +00:00

7 lines
171 B
Ruby

if PLATFORM =~ /win32/i
$:.unshift '../..'
require 'rbconfig'
include Config
$CFLAGS = "-fno-defer-pop" if /gcc/ =~ CONFIG['CC']
create_makefile("Win32API")
end