From 8c196cfba84b945bfabb819511e92803811977e8 Mon Sep 17 00:00:00 2001 From: tenderlove Date: Thu, 4 Nov 2010 15:15:39 +0000 Subject: * 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 --- ChangeLog | 5 +++++ ext/fiddle/extconf.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 274db4c3b2..a1f050ede4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Nov 5 00:14:15 2010 Aaron Patterson + + * ext/fiddle/extconf.rb: fixing ffi library location on windows. + Thanks Usa! [ruby-core:32930] + Thu Nov 4 20:04:44 2010 Koichi Sasada * gc.c (rb_newobj): force garbage_collect() if GC.stress == true. diff --git a/ext/fiddle/extconf.rb b/ext/fiddle/extconf.rb index dcc2c43cfd..03b0ac2765 100644 --- a/ext/fiddle/extconf.rb +++ b/ext/fiddle/extconf.rb @@ -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 -- cgit v1.2.3