ruby-changes:4065
From: ko1@a...
Date: Wed, 20 Feb 2008 23:43:59 +0900 (JST)
Subject: [ruby-changes:4065] usa - Ruby:r15555 (trunk): * ext/readline/extconf.rb (rl_event_hook): workaround for native
usa 2008-02-20 23:43:39 +0900 (Wed, 20 Feb 2008) New Revision: 15555 Modified files: trunk/ChangeLog trunk/ext/readline/extconf.rb Log: * ext/readline/extconf.rb (rl_event_hook): workaround for native windows. http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=15555&r2=15554&diff_format=u http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/readline/extconf.rb?r1=15555&r2=15554&diff_format=u Index: ChangeLog =================================================================== --- ChangeLog (revision 15554) +++ ChangeLog (revision 15555) @@ -1,3 +1,8 @@ +Wed Feb 20 23:28:43 2008 NAKAMURA Usaku <usa@r...> + + * ext/readline/extconf.rb (rl_event_hook): workaround for native + windows. + Wed Feb 20 19:42:03 2008 NARUSE, Yui <naruse@r...> * encoding.c (rb_enc_associate_index): doesn't clear coderange Index: ext/readline/extconf.rb =================================================================== --- ext/readline/extconf.rb (revision 15554) +++ ext/readline/extconf.rb (revision 15555) @@ -54,7 +54,8 @@ have_readline_var("rl_filename_quote_characters") have_readline_var("rl_attempted_completion_over") have_readline_var("rl_library_version") -have_readline_var("rl_event_hook") +# workaround for native windows. +/mswin|bccwin|mingw/ !~ RUBY_PLATFORM && have_readline_var("rl_event_hook") have_func("rl_cleanup_after_signal") have_func("rl_clear_signals") have_func("rl_vi_editing_mode") -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/