[前][次][番号順一覧][スレッド一覧]

ruby-changes:22680

From: nobu <ko1@a...>
Date: Wed, 22 Feb 2012 10:32:25 +0900 (JST)
Subject: [ruby-changes:22680] nobu:r34729 (trunk): * test/mkmf/test_framework.rb: try CoreFoundation framework, than

nobu	2012-02-22 10:32:14 +0900 (Wed, 22 Feb 2012)

  New Revision: 34729

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34729

  Log:
    * test/mkmf/test_framework.rb: try CoreFoundation framework, than
      Cocoa which is dependent on QuickTime SDK which has separated
      since Xcode 4.3.

  Modified files:
    trunk/ChangeLog
    trunk/test/mkmf/test_framework.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 34728)
+++ ChangeLog	(revision 34729)
@@ -1,3 +1,9 @@
+Wed Feb 22 10:32:11 2012  Nobuyoshi Nakada  <nobu@r...>
+
+	* 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@r...>
 
 	* common.mk (test-all, test-ruby): more dependencies.
Index: test/mkmf/test_framework.rb
===================================================================
--- test/mkmf/test_framework.rb	(revision 34728)
+++ test/mkmf/test_framework.rb	(revision 34729)
@@ -2,8 +2,8 @@
 
 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

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]