summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-29 10:08:20 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-29 10:08:20 +0000
commit3015c5f7cb966b6d5a222d09860ada1ba0ecb0d6 (patch)
tree74f1d00c3fc62da5cc232f1c2533dc66366e06ce /ext
parent523cd7be9c8284487317bb0286fc680acc45675c (diff)
* 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
Diffstat (limited to 'ext')
-rw-r--r--ext/win32ole/extconf.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/win32ole/extconf.rb b/ext/win32ole/extconf.rb
index c0dfd4c724..25fdf13f1a 100644
--- a/ext/win32ole/extconf.rb
+++ b/ext/win32ole/extconf.rb
@@ -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