From bab9d9c04ab8691072c5891e9cb4c2f68857a8a3 Mon Sep 17 00:00:00 2001 From: eban Date: Mon, 29 Sep 2003 10:08:20 +0000 Subject: * ext/win32ole/extconf.rb: add windows.h checking. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4623 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/win32ole/extconf.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/win32ole/extconf.rb b/ext/win32ole/extconf.rb index c0dfd4c72..25fdf13f1 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 -- cgit