summaryrefslogtreecommitdiff
path: root/ext/win32ole
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-12 05:46:59 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-12 05:46:59 +0000
commit5d0f8cdc6f195ed0c7d6b0b6904cdf419326cca6 (patch)
tree9d6ef301f1f8f7a9e1d38aaaa41ebdc7af33ed81 /ext/win32ole
parentd430692b95b459b3706cda58e6e3b56406fab76a (diff)
* 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
Diffstat (limited to 'ext/win32ole')
-rw-r--r--ext/win32ole/extconf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/win32ole/extconf.rb b/ext/win32ole/extconf.rb
index 25fdf13f1a..4afe1117eb 100644
--- a/ext/win32ole/extconf.rb
+++ b/ext/win32ole/extconf.rb
@@ -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