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: fixing ffi library location on windows.

Thanks Usa! [ruby-core:32930]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tenderlove 2010-11-04 15:15:39 +00:00
parent 71603f3f01
commit 8c196cfba8
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Fri Nov 5 00:14:15 2010 Aaron Patterson <aaron@tenderlovemaking.com>
* ext/fiddle/extconf.rb: fixing ffi library location on windows.
Thanks Usa! [ruby-core:32930]
Thu Nov 4 20:04:44 2010 Koichi Sasada <ko1@atdot.net>
* gc.c (rb_newobj): force garbage_collect() if GC.stress == true.

View file

@ -13,7 +13,7 @@ unless have_header('ffi.h')
end
end
unless have_library('ffi')
unless have_library('ffi') || have_library('libffi')
abort "libffi is missing. Please install libffi."
end