2002-06-01 16:34:30 +04:00
|
|
|
#----------------------------------
|
|
|
|
# extconf.rb
|
|
|
|
# $Revision$
|
|
|
|
#----------------------------------
|
|
|
|
require 'mkmf'
|
|
|
|
|
2010-11-11 15:32:15 +03:00
|
|
|
case RUBY_PLATFORM
|
|
|
|
when /cygwin/
|
|
|
|
inc = nil
|
|
|
|
lib = '/usr/lib/w32api'
|
|
|
|
end
|
|
|
|
|
|
|
|
dir_config("win32", inc, lib)
|
2004-10-21 19:10:06 +04:00
|
|
|
|
2002-06-01 16:34:30 +04:00
|
|
|
def create_win32ole_makefile
|
|
|
|
if have_library("ole32") and
|
|
|
|
have_library("oleaut32") and
|
2010-11-11 15:32:15 +03:00
|
|
|
have_library("uuid", "&CLSID_CMultiLanguage", "mlang.h") and
|
2002-06-01 16:34:30 +04:00
|
|
|
have_library("user32") and
|
2004-01-26 05:35:30 +03:00
|
|
|
have_library("kernel32") and
|
2003-09-29 14:08:20 +04:00
|
|
|
have_library("advapi32") and
|
2003-10-12 09:46:59 +04:00
|
|
|
have_header("windows.h")
|
2008-10-14 16:44:37 +04:00
|
|
|
unless have_type("IMultiLanguage2", "mlang.h")
|
|
|
|
have_type("IMultiLanguage", "mlang.h")
|
|
|
|
end
|
2013-01-18 06:23:37 +04: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 16:34:30 +04:00
|
|
|
create_makefile("win32ole")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-10-21 19:10:06 +04:00
|
|
|
|
2002-06-03 15:44:08 +04:00
|
|
|
case RUBY_PLATFORM
|
2009-02-02 02:12:52 +03:00
|
|
|
when /mswin/
|
2013-01-17 12:50:12 +04:00
|
|
|
$CFLAGS.sub!(/((?:\A|\s)[-\/])W\d(?=\z|\s)/, '\1W3') or
|
|
|
|
$CFLAGS += ' -W3'
|
2002-06-01 16:34:30 +04:00
|
|
|
end
|
|
|
|
create_win32ole_makefile
|