summaryrefslogtreecommitdiff
path: root/ext/Win32API/extconf.rb
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-06 15:45:14 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-06 15:45:14 +0000
commit280039eb20e48de88e3664f130820864a361bbd1 (patch)
tree1f972f00dcf76826d20cf11e4b9047a45ac485f8 /ext/Win32API/extconf.rb
parent2b214ff6a356e019f2529a00b0ea258a63a348d9 (diff)
* ext/Win32API/Win32API.c: no longer use inline-asms.
* ext/Win32API/extconf.rb: no need to add gcc options. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/Win32API/extconf.rb')
-rw-r--r--ext/Win32API/extconf.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/Win32API/extconf.rb b/ext/Win32API/extconf.rb
index 8117a38720..134a6e5b92 100644
--- a/ext/Win32API/extconf.rb
+++ b/ext/Win32API/extconf.rb
@@ -1,8 +1,5 @@
require 'mkmf'
if have_header("windows.h") and have_library("kernel32")
- if Config::CONFIG["CC"] =~ /gcc/
- $CFLAGS += " -fno-defer-pop -fno-omit-frame-pointer"
- end
create_makefile("Win32API")
end