Actions
Feature #3993
closedsmall change of ext/fiddle/extconf.rb for Windows
Description
=begin
It seems that libffi VC++ port outputs libffi.lib instead of ffi.lib.
Aaron, could you apply this patch?
Index: ext/fiddle/extconf.rb¶
--- ext/fiddle/extconf.rb (リビジョン 29618)
+++ ext/fiddle/extconf.rb (作業コピー)
@@ -13,7 +13,7 @@
end
end
-unless have_library('ffi')
+unless have_library('ffi') || have_library('libffi')
abort "libffi is missing. Please install libffi."
end
=end
Actions
Like0
Like0