2015-12-16 00:31:54 -05:00
|
|
|
# frozen_string_literal: false
|
2002-06-01 08:34:30 -04:00
|
|
|
#----------------------------------
|
|
|
|
# extconf.rb
|
|
|
|
# $Revision$
|
|
|
|
#----------------------------------
|
|
|
|
require 'mkmf'
|
|
|
|
|
2010-11-11 07:32:15 -05:00
|
|
|
case RUBY_PLATFORM
|
|
|
|
when /cygwin/
|
|
|
|
inc = nil
|
|
|
|
lib = '/usr/lib/w32api'
|
|
|
|
end
|
|
|
|
|
|
|
|
dir_config("win32", inc, lib)
|
2004-10-21 11:10:06 -04:00
|
|
|
|
2002-06-01 08:34:30 -04:00
|
|
|
def create_win32ole_makefile
|
|
|
|
if have_library("ole32") and
|
|
|
|
have_library("oleaut32") and
|
2010-11-11 07:32:15 -05:00
|
|
|
have_library("uuid", "&CLSID_CMultiLanguage", "mlang.h") and
|
2002-06-01 08:34:30 -04:00
|
|
|
have_library("user32") and
|
2004-01-25 21:35:30 -05:00
|
|
|
have_library("kernel32") and
|
2003-09-29 06:08:20 -04:00
|
|
|
have_library("advapi32") and
|
2003-10-12 01:46:59 -04:00
|
|
|
have_header("windows.h")
|
2008-10-14 08:44:37 -04:00
|
|
|
unless have_type("IMultiLanguage2", "mlang.h")
|
|
|
|
have_type("IMultiLanguage", "mlang.h")
|
|
|
|
end
|
2013-01-17 21:23:37 -05:00
|
|
|
spec = nil
|
|
|
|
checking_for('thread_specific', '%s') do
|
|
|
|
spec = %w[__declspec(thread) __thread].find {|th|
|
|
|
|
try_compile("#{th} int foo;", "", :werror => true)
|
|
|
|
}
|
|
|
|
spec or 'no'
|
|
|
|
end
|
|
|
|
$defs << "-DRB_THREAD_SPECIFIC=#{spec}" if spec
|
2002-06-01 08:34:30 -04:00
|
|
|
create_makefile("win32ole")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-10-21 11:10:06 -04:00
|
|
|
|
2002-06-03 07:44:08 -04:00
|
|
|
case RUBY_PLATFORM
|
2009-02-01 18:12:52 -05:00
|
|
|
when /mswin/
|
2013-01-17 03:50:12 -05:00
|
|
|
$CFLAGS.sub!(/((?:\A|\s)[-\/])W\d(?=\z|\s)/, '\1W3') or
|
|
|
|
$CFLAGS += ' -W3'
|
2002-06-01 08:34:30 -04:00
|
|
|
end
|
|
|
|
create_win32ole_makefile
|