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

ruby-changes:40774

From: usa <ko1@a...>
Date: Wed, 2 Dec 2015 15:14:51 +0900 (JST)
Subject: [ruby-changes:40774] usa:r52853 (ruby_2_1): merge revision(s) 52795: [Backport #11751]

usa	2015-12-02 15:14:40 +0900 (Wed, 02 Dec 2015)

  New Revision: 52853

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

  Log:
    merge revision(s) 52795: [Backport #11751]
    
    * ext/readline/extconf.rb: call dir_config("libedit")
      if --enable-libedit is spcified. [Bug #11751]
      patched by John Hein

  Modified directories:
    branches/ruby_2_1/
  Modified files:
    branches/ruby_2_1/ChangeLog
    branches/ruby_2_1/ext/readline/extconf.rb
    branches/ruby_2_1/version.h
Index: ruby_2_1/ChangeLog
===================================================================
--- ruby_2_1/ChangeLog	(revision 52852)
+++ ruby_2_1/ChangeLog	(revision 52853)
@@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_1/ChangeLog#L1
+Wed Dec  2 15:14:29 2015  NARUSE, Yui  <naruse@r...>
+
+	* ext/readline/extconf.rb: call dir_config("libedit")
+	  if --enable-libedit is spcified. [Bug #11751]
+	  patched by John Hein
+
 Tue Dec  1 16:57:57 2015  Nobuyoshi Nakada  <nobu@r...>
 
 	* io.c (rb_io_each_codepoint): raise an exception at incomplete
Index: ruby_2_1/ext/readline/extconf.rb
===================================================================
--- ruby_2_1/ext/readline/extconf.rb	(revision 52852)
+++ ruby_2_1/ext/readline/extconf.rb	(revision 52853)
@@ -37,6 +37,7 @@ have_library("ncurses", "tgetnum") || https://github.com/ruby/ruby/blob/trunk/ruby_2_1/ext/readline/extconf.rb#L37
 case enable_libedit
 when true
   # --enable-libedit
+  dir_config("libedit")
   unless (readline.have_header("editline/readline.h") ||
           readline.have_header("readline/readline.h")) &&
           have_library("edit", "readline")
Index: ruby_2_1/version.h
===================================================================
--- ruby_2_1/version.h	(revision 52852)
+++ ruby_2_1/version.h	(revision 52853)
@@ -1,10 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_1/version.h#L1
 #define RUBY_VERSION "2.1.8"
-#define RUBY_RELEASE_DATE "2015-12-01"
-#define RUBY_PATCHLEVEL 430
+#define RUBY_RELEASE_DATE "2015-12-02"
+#define RUBY_PATCHLEVEL 431
 
 #define RUBY_RELEASE_YEAR 2015
 #define RUBY_RELEASE_MONTH 12
-#define RUBY_RELEASE_DAY 1
+#define RUBY_RELEASE_DAY 2
 
 #include "ruby/version.h"
 

Property changes on: ruby_2_1
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r52795


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

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