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
Updated by Anonymous about 14 years ago
- Status changed from Assigned to Closed
- % Done changed from 0 to 100
=begin
This issue was solved with changeset r29691.
Usaku, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
Actions
Like0
Like0