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
|
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/
|
2002-10-24 08:58:42 -04:00
|
|
|
$CFLAGS += ' /W3'
|
2002-06-01 08:34:30 -04:00
|
|
|
end
|
|
|
|
create_win32ole_makefile
|