* ext/readline/extconf.rb: Use an exception instead of bare exit.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35688 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kosaki 2012-05-18 07:02:10 +00:00
parent 933b5ced23
commit 522627d5cc
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Fri May 18 15:49:35 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* ext/readline/extconf.rb: Use an exception instead of bare exit.
Fri May 18 15:38:11 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com> Fri May 18 15:38:11 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* ext/ripper/extconf.rb: Use an exception instead of bare * ext/ripper/extconf.rb: Use an exception instead of bare

View file

@ -40,14 +40,14 @@ when true
unless (have_readline_header("editline/readline.h") || unless (have_readline_header("editline/readline.h") ||
have_readline_header("readline/readline.h")) && have_readline_header("readline/readline.h")) &&
have_library("edit", "readline") have_library("edit", "readline")
exit raise "libedit not found"
end end
when false when false
# --disable-libedit # --disable-libedit
unless ((have_readline_header("readline/readline.h") && unless ((have_readline_header("readline/readline.h") &&
have_readline_header("readline/history.h")) && have_readline_header("readline/history.h")) &&
have_library("readline", "readline")) have_library("readline", "readline"))
exit raise "readline not found"
end end
else else
# does not specify # does not specify
@ -57,7 +57,7 @@ else
have_library("edit", "readline"))) || have_library("edit", "readline"))) ||
(have_readline_header("editline/readline.h") && (have_readline_header("editline/readline.h") &&
have_library("edit", "readline")) have_library("edit", "readline"))
exit raise "readline nor libedit not found"
end end
end end