diff options
author | Steve Wills <swills@FreeBSD.org> | 2014-02-25 04:18:07 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2014-02-25 04:18:07 +0000 |
commit | 4d921409e292599df48569f4439ce7dc7d6be726 (patch) | |
tree | 702131052bd341c4a93ef09faf5dd53e03b4e4f0 /lang/ruby20 | |
parent | 7419afa2a2469ac68ac27d4665deff0fb2ca1be9 (diff) | |
download | ports-4d921409e292599df48569f4439ce7dc7d6be726.tar.gz ports-4d921409e292599df48569f4439ce7dc7d6be726.zip |
Notes
Diffstat (limited to 'lang/ruby20')
-rw-r--r-- | lang/ruby20/files/patch-ext__dl__extconf.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/ruby20/files/patch-ext__dl__extconf.rb b/lang/ruby20/files/patch-ext__dl__extconf.rb new file mode 100644 index 000000000000..bddc2036ae85 --- /dev/null +++ b/lang/ruby20/files/patch-ext__dl__extconf.rb @@ -0,0 +1,11 @@ +--- ext/dl/extconf.rb.orig 2014-02-24 15:49:13.436431209 +0000 ++++ ext/dl/extconf.rb 2014-02-24 15:50:21.287476923 +0000 +@@ -1,7 +1,7 @@ + require 'mkmf' + + if RbConfig::CONFIG['GCC'] == 'yes' +- (have_macro("__clang__") ? $LDFLAGS : $CFLAGS) << " -fno-defer-pop" ++ $CFLAGS << " -fno-defer-pop" unless have_macro("__clang__") + $CFLAGS << " -fno-omit-frame-pointer" + end + |