aboutsummaryrefslogtreecommitdiffstats
path: root/test/mkmf
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-22 01:32:14 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-22 01:32:14 +0000
commit8e799c3e5b66b7a0d51ba9e904eec89ad719fb1d (patch)
tree7d583076c56750f092eedd0c20a77d3910efd682 /test/mkmf
parent1aa4e11d163cf452b59114ad9a5b3908a11fd797 (diff)
downloadruby-8e799c3e5b66b7a0d51ba9e904eec89ad719fb1d.tar.gz
* test/mkmf/test_framework.rb: try CoreFoundation framework, than
Cocoa which is dependent on QuickTime SDK which has separated since Xcode 4.3. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/mkmf')
-rw-r--r--test/mkmf/test_framework.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mkmf/test_framework.rb b/test/mkmf/test_framework.rb
index fc8585240f..2bf79dcef4 100644
--- a/test/mkmf/test_framework.rb
+++ b/test/mkmf/test_framework.rb
@@ -2,8 +2,8 @@ require_relative 'base'
class TestMkmf
class TestHaveFramework < TestMkmf
- def test_cocoa_framework
- assert(have_framework("Cocoa"), "try as Objective-C")
+ def test_core_foundation_framework
+ assert(have_framework("CoreFoundation"), "try as Objective-C")
end
end
end if /darwin/ =~ RUBY_PLATFORM