1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/win32ole/extconf.rb: check "windows.h", not "windows".

[ruby-talk:84051]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4747 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2003-10-12 05:46:59 +00:00
parent d430692b95
commit 5d0f8cdc6f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sun Oct 12 14:45:03 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* ext/win32ole/extconf.rb: check "windows.h", not "windows".
[ruby-talk:84051]
Sat Oct 11 17:09:21 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* lib/rexml/quickpath.rb (REXML::QuickPath::match):

View file

@ -11,7 +11,7 @@ def create_win32ole_makefile
have_library("uuid") and
have_library("user32") and
have_library("advapi32") and
have_header("windows")
have_header("windows.h")
create_makefile("win32ole")
end
end