* ext/win32ole/extconf.rb: add windows.h checking.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4623 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2003-09-29 10:08:20 +00:00
parent 523cd7be9c
commit 3015c5f7cb
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Mon Sep 29 19:06:51 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* ext/win32ole/extconf.rb: add windows.h checking.
Mon Sep 29 16:18:30 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org> Mon Sep 29 16:18:30 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* lib/logger.rb: check if the given logdevice object respond_to :write * lib/logger.rb: check if the given logdevice object respond_to :write

View File

@ -10,7 +10,8 @@ def create_win32ole_makefile
have_library("oleaut32") and have_library("oleaut32") and
have_library("uuid") and have_library("uuid") and
have_library("user32") and have_library("user32") and
have_library("advapi32") have_library("advapi32") and
have_header("windows")
create_makefile("win32ole") create_makefile("win32ole")
end end
end end