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

ruby-changes:15233

From: naruse <ko1@a...>
Date: Tue, 30 Mar 2010 21:22:13 +0900 (JST)
Subject: [ruby-changes:15233] Ruby:r27115 (trunk): * ext/psych/extconf.rb: install psych .so to not psych/ but direct.

naruse	2010-03-30 21:21:55 +0900 (Tue, 30 Mar 2010)

  New Revision: 27115

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

  Log:
    * ext/psych/extconf.rb: install psych .so to not psych/ but direct.
      This prepends to install *.rb files to psych/psych.
    
    * ext/psych/lib/psych.rb: require 'psych.so'.

  Modified files:
    trunk/ChangeLog
    trunk/ext/psych/extconf.rb
    trunk/ext/psych/lib/psych.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 27114)
+++ ChangeLog	(revision 27115)
@@ -1,3 +1,10 @@
+Tue Mar 30 21:18:32 2010  NARUSE, Yui  <naruse@r...>
+
+	* ext/psych/extconf.rb: install psych .so to not psych/ but direct.
+	  This prepends to install *.rb files to psych/psych.
+
+	* ext/psych/lib/psych.rb: require 'psych.so'.
+
 Tue Mar 30 20:55:14 2010  Tanaka Akira  <akr@f...>
 
 	* time.c (w2v): renamed from w2xv.
Index: ext/psych/lib/psych.rb
===================================================================
--- ext/psych/lib/psych.rb	(revision 27114)
+++ ext/psych/lib/psych.rb	(revision 27115)
@@ -1,4 +1,4 @@
-require 'psych/psych'
+require 'psych.so'
 require 'psych/nodes'
 require 'psych/visitors'
 require 'psych/handler'
Index: ext/psych/extconf.rb
===================================================================
--- ext/psych/extconf.rb	(revision 27114)
+++ ext/psych/extconf.rb	(revision 27115)
@@ -11,6 +11,6 @@
 asplode('yaml.h')  unless find_header  'yaml.h'
 asplode('libyaml') unless find_library 'yaml', 'yaml_get_version'
 
-create_makefile 'psych/psych'
+create_makefile 'psych'
 
 # :startdoc:

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

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