2002-06-01 12:34:30 +00:00
|
|
|
#----------------------------------
|
|
|
|
# extconf.rb
|
|
|
|
# $Revision$
|
|
|
|
#----------------------------------
|
|
|
|
require 'mkmf'
|
|
|
|
|
2010-11-11 12:32:15 +00:00
|
|
|
case RUBY_PLATFORM
|
|
|
|
when /cygwin/
|
|
|
|
inc = nil
|
|
|
|
lib = '/usr/lib/w32api'
|
|
|
|
end
|
|
|
|
|
|
|
|
dir_config("win32", inc, lib)
|
2004-10-21 15:10:06 +00:00
|
|
|
|
2002-06-01 12:34:30 +00:00
|
|
|
def create_win32ole_makefile
|
|
|
|
if have_library("ole32") and
|
|
|
|
have_library("oleaut32") and
|
2010-11-11 12:32:15 +00:00
|
|
|
have_library("uuid", "&CLSID_CMultiLanguage", "mlang.h") and
|
2002-06-01 12:34:30 +00:00
|
|
|
have_library("user32") and
|
2004-01-26 02:35:30 +00:00
|
|
|
have_library("kernel32") and
|
2003-09-29 10:08:20 +00:00
|
|
|
have_library("advapi32") and
|
2003-10-12 05:46:59 +00:00
|
|
|
have_header("windows.h")
|
2008-10-14 12:44:37 +00:00
|
|
|
unless have_type("IMultiLanguage2", "mlang.h")
|
|
|
|
have_type("IMultiLanguage", "mlang.h")
|
|
|
|
end
|
2002-06-01 12:34:30 +00:00
|
|
|
create_makefile("win32ole")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-10-21 15:10:06 +00:00
|
|
|
|
2002-06-03 11:44:08 +00:00
|
|
|
case RUBY_PLATFORM
|
2009-02-01 23:12:52 +00:00
|
|
|
when /mswin/
|
2002-10-24 12:58:42 +00:00
|
|
|
$CFLAGS += ' /W3'
|
2002-06-01 12:34:30 +00:00
|
|
|
end
|
|
|
|
create_win32ole_makefile
|