lib/mkmf/lite.rb in mkmf-lite-0.2.5 vs lib/mkmf/lite.rb in mkmf-lite-0.2.6

- old
+ new

@@ -1,19 +1,14 @@ require 'erb' require 'rbconfig' require 'tmpdir' require 'ptools' +require 'open3' -if File::ALT_SEPARATOR && RUBY_VERSION.to_f < 1.9 - require 'win32/open3' -else - require 'open3' -end - module Mkmf module Lite # The version of the mkmf-lite library - MKMF_LITE_VERSION = '0.2.5' + MKMF_LITE_VERSION = '0.2.6' @@cpp_command = RbConfig::CONFIG['CC'] || RbConfig::CONFIG['CPP'] @@cpp_srcfile = 'conftest.c' if File::ALT_SEPARATOR && RbConfig::CONFIG['CPP'] =~ /^cl/