1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/ext/fiddle/extconf.rb
tenderlove 20e2c4cb36 * Use _WIN32 rather than checking for windows.h. Thanks Jon Forums!
[ruby-core:33977]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2011-01-05 03:13:18 +00:00

24 lines
420 B
Ruby

require 'mkmf'
# :stopdoc:
dir_config 'libffi'
pkg_config("libffi")
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."
end
end
unless have_library('ffi') || have_library('libffi')
abort "libffi is missing. Please install libffi."
end
have_header 'sys/mman.h'
create_makefile 'fiddle'
# :startdoc: