diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-29 10:08:20 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-29 10:08:20 +0000 |
| commit | bab9d9c04ab8691072c5891e9cb4c2f68857a8a3 (patch) | |
| tree | 74f1d00c3fc62da5cc232f1c2533dc66366e06ce | |
| parent | 540aa85f53ec4b8c9f51be4782d5c9825f58e7df (diff) | |
| download | ruby-bab9d9c04ab8691072c5891e9cb4c2f68857a8a3.tar.gz ruby-bab9d9c04ab8691072c5891e9cb4c2f68857a8a3.tar.xz ruby-bab9d9c04ab8691072c5891e9cb4c2f68857a8a3.zip | |
* 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
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/win32ole/extconf.rb | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -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 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 |
