From 9e2576f7d66c46f2e5c900ab50fa6946ff622bfc Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Sun, 15 Feb 2009 20:15:22 -0800 Subject: [PATCH] need ftools for File.copy on windows --- bindings/ruby/extconf.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/ruby/extconf.rb b/bindings/ruby/extconf.rb index 3ed3f0c9..915b9ea3 100644 --- a/bindings/ruby/extconf.rb +++ b/bindings/ruby/extconf.rb @@ -26,6 +26,7 @@ when /bsd/ have_library("kvm") when /mswin32|mingw|cygwin|bccwin32/ os = 'win32' + require 'ftools' $CPPFLAGS += ' -DWIN32' is_win32 = true have_library("kernel32")