mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
99ae768645
even if readline() interrupted. * ext/readline/readline.c: returned string need to be tainted. * ext/readline/readline.c: fixed memory leak. * ext/readline/readline.c: allow negative index. * ext/readline/readline.c: added Readline::HISTORY.size same as Readline::HISTORY.length * ext/readline/readline.c: allow conditional parsing of the ~/.inputrc file by `$if Ruby'. * ext/readline/extconf.rb: check whether the libreadline has the variable `rl_completion_append_character' (this feature was implemented from GNU readline 2.1). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1735 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
27 lines
792 B
Ruby
27 lines
792 B
Ruby
require "mkmf"
|
|
|
|
dir_config("readline")
|
|
have_library("user32", nil) if /cygwin/ === RUBY_PLATFORM
|
|
have_library("ncurses", "tgetnum") or
|
|
have_library("termcap", "tgetnum") or
|
|
have_library("curses", "tgetnum")
|
|
|
|
if have_header("readline/readline.h") and
|
|
have_header("readline/history.h") and
|
|
have_library("readline", "readline")
|
|
if have_func("rl_filename_completion_function")
|
|
$CFLAGS += " -DREADLINE_42_OR_LATER"
|
|
end
|
|
if have_func("rl_cleanup_after_signal")
|
|
$CFLAGS += " -DREADLINE_40_OR_LATER"
|
|
end
|
|
if try_link(<<EOF, $libs)
|
|
#include <stdio.h>
|
|
#include <readline/readline.h>
|
|
main() {rl_completion_append_character = 1;}
|
|
EOF
|
|
# this feature is implemented in readline-2.1 or later.
|
|
$CFLAGS += " -DREADLINE_21_OR_LATER"
|
|
end
|
|
create_makefile("readline")
|
|
end
|