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

ruby-changes:37131

From: nobu <ko1@a...>
Date: Sun, 11 Jan 2015 16:35:25 +0900 (JST)
Subject: [ruby-changes:37131] nobu:r49212 (trunk): extmk.rb: do not exclude readline

nobu	2015-01-11 16:35:13 +0900 (Sun, 11 Jan 2015)

  New Revision: 49212

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

  Log:
    extmk.rb: do not exclude readline
    
    * ext/extmk.rb: do not exclude readline by default on win32.  it
      would not be completely impossible.

  Modified files:
    trunk/ext/extmk.rb
Index: ext/extmk.rb
===================================================================
--- ext/extmk.rb	(revision 49211)
+++ ext/extmk.rb	(revision 49212)
@@ -496,7 +496,7 @@ ext_prefix = "#{$top_srcdir}/ext" https://github.com/ruby/ruby/blob/trunk/ext/extmk.rb#L496
 exts = $static_ext.sort_by {|t, i| i}.collect {|t, i| t}
 default_exclude_exts =
   if $mswin or $mingw
-    %w'pty readline syslog'
+    %w'pty syslog'
   else
     %w'*win32*'
   end

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

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