1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
nobu 2012-02-22 01:32:14 +00:00
parent 1aa4e11d16
commit 8e799c3e5b
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
Wed Feb 22 10:32:11 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/mkmf/test_framework.rb: try CoreFoundation framework, than
Cocoa which is dependent on QuickTime SDK which has separated
since Xcode 4.3.
Wed Feb 22 10:18:05 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
* common.mk (test-all, test-ruby): more dependencies.

View file

@ -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