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 --- ext/fiddle/extconf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') 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