1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/fiddle/extconf.rb: Use an exception instaed of bare abort.

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

View file

@ -9,12 +9,12 @@ unless have_header('ffi.h')
if have_header('ffi/ffi.h')
$defs.push(format('-DUSE_HEADER_HACKS'))
else
abort "ffi.h is missing. Please install libffi."
raise "ffi.h is missing. Please install libffi."
end
end
unless have_library('ffi') || have_library('libffi')
abort "libffi is missing. Please install libffi."
raise "libffi is missing. Please install libffi."
end
have_header 'sys/mman.h'