summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ext/win32ole/extconf.rb3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 22df28f95e..f3bd1bcece 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
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