mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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:
parent
523cd7be9c
commit
3015c5f7cb
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
||||
|
||||
* lib/logger.rb: check if the given logdevice object respond_to :write
|
||||
|
|
|
@ -10,7 +10,8 @@ def create_win32ole_makefile
|
|||
have_library("oleaut32") and
|
||||
have_library("uuid") and
|
||||
have_library("user32") and
|
||||
have_library("advapi32")
|
||||
have_library("advapi32") and
|
||||
have_header("windows")
|
||||
create_makefile("win32ole")
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue