mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ext/readline/extconf.rb: try using more readline APIs
on MinGW. [Bug #15020] From: MSP-Greg <Greg.mpls@gmail.com> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64526 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6264225c7e
commit
5bd4283f77
1 changed files with 3 additions and 3 deletions
|
@ -83,9 +83,9 @@ readline.have_var("rl_line_buffer")
|
|||
readline.have_var("rl_point")
|
||||
readline.have_var("rl_char_is_quoted_p")
|
||||
# workaround for native windows.
|
||||
/mswin|bccwin|mingw/ !~ RUBY_PLATFORM && readline.have_var("rl_event_hook")
|
||||
/mswin|bccwin|mingw/ !~ RUBY_PLATFORM && readline.have_var("rl_catch_sigwinch")
|
||||
/mswin|bccwin|mingw/ !~ RUBY_PLATFORM && readline.have_var("rl_catch_signals")
|
||||
/mswin|bccwin/ !~ RUBY_PLATFORM && readline.have_var("rl_event_hook")
|
||||
/mswin|bccwin/ !~ RUBY_PLATFORM && readline.have_var("rl_catch_sigwinch")
|
||||
/mswin|bccwin/ !~ RUBY_PLATFORM && readline.have_var("rl_catch_signals")
|
||||
readline.have_var("rl_pre_input_hook")
|
||||
readline.have_var("rl_special_prefixes")
|
||||
readline.have_func("rl_cleanup_after_signal")
|
||||
|
|
Loading…
Add table
Reference in a new issue