summaryrefslogtreecommitdiffstats
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
commitd03ef2b0a9244e0a9ad7cb5185bd38dbc185f0e8 (patch)
tree9d6ef301f1f8f7a9e1d38aaaa41ebdc7af33ed81
parente9a9f9a89be382093c2ddb2c8becb1ca40d8202c (diff)
downloadruby-d03ef2b0a9244e0a9ad7cb5185bd38dbc185f0e8.tar.gz
ruby-d03ef2b0a9244e0a9ad7cb5185bd38dbc185f0e8.tar.xz
ruby-d03ef2b0a9244e0a9ad7cb5185bd38dbc185f0e8.zip
* ext/win32ole/extconf.rb: check "windows.h", not "windows".
[ruby-talk:84051] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4747 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/win32ole/extconf.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0c5092a6a..8fb704e03 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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):
diff --git a/ext/win32ole/extconf.rb b/ext/win32ole/extconf.rb
index 25fdf13f1..4afe1117e 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