summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-30 07:39:45 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-30 07:39:45 +0000
commitda20411b5127108f83188dbb7ca7a150687010c0 (patch)
tree9499bc7105e6df7be566d7020925f1998c5b6e32
parente6c3b9cd107a2dc29a8e1c3f35dd90923cb0e200 (diff)
merge revision(s) 45518: [Backport #9702]
* ext/readline/extconf.rb (rl_hook_func_t): check pointer type. [ruby-dev:48089] [Bug #9702] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@45754 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/readline/extconf.rb2
-rw-r--r--version.h2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 05d7f5aa4d..6094dee58a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Apr 30 16:39:43 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * ext/readline/extconf.rb (rl_hook_func_t): check pointer type.
+ [ruby-dev:48089] [Bug #9702]
+
Wed Apr 30 16:37:16 2014 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (rb_w32_accept, open_ifs_socket, socketpair_internal):
diff --git a/ext/readline/extconf.rb b/ext/readline/extconf.rb
index db7dab439d..95cc91e46f 100644
--- a/ext/readline/extconf.rb
+++ b/ext/readline/extconf.rb
@@ -97,7 +97,7 @@ readline.have_func("remove_history")
readline.have_func("clear_history")
readline.have_func("rl_redisplay")
readline.have_func("rl_insert_text")
-unless readline.have_type("rl_hook_func_t")
+unless readline.have_type("rl_hook_func_t*")
$defs << "-Drl_hook_func_t=Function"
end
diff --git a/version.h b/version.h
index 9a69bf4864..49e41d5247 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2014-04-30"
-#define RUBY_PATCHLEVEL 474
+#define RUBY_PATCHLEVEL 475
#define RUBY_RELEASE_YEAR 2014
#define RUBY_RELEASE_MONTH 4