From 5d0f8cdc6f195ed0c7d6b0b6904cdf419326cca6 Mon Sep 17 00:00:00 2001 From: eban Date: Sun, 12 Oct 2003 05:46:59 +0000 Subject: * 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 --- ChangeLog | 5 +++++ ext/win32ole/extconf.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0c5092a6a7..8fb704e032 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Oct 12 14:45:03 2003 WATANABE Hirofumi + + * ext/win32ole/extconf.rb: check "windows.h", not "windows". + [ruby-talk:84051] + Sat Oct 11 17:09:21 2003 WATANABE Hirofumi * lib/rexml/quickpath.rb (REXML::QuickPath::match): 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 -- cgit v1.2.3