aboutsummaryrefslogtreecommitdiffstats
path: root/ext/win32ole/extconf.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-26 02:35:30 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-26 02:35:30 +0000
commit6e0b3ca606ce09558ff6f5e6549230b254665da0 (patch)
treeeb5f4793c093877cb3109aeca073305a997558d5 /ext/win32ole/extconf.rb
parentc88e3627cfdf1ab2c7f1a558f3010f60bf7120ba (diff)
downloadruby-6e0b3ca606ce09558ff6f5e6549230b254665da0.tar.gz
* ext/extmk.rb: Makefiles should depend on also rbconfig.rb.
(ruby-bugs:PR#1256) * ext/win32ole/win32ole.c (set_argv): set real arguments to WIN32OLE::ARGV. [ruby-list:39073] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5553 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/win32ole/extconf.rb')
-rw-r--r--ext/win32ole/extconf.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/win32ole/extconf.rb b/ext/win32ole/extconf.rb
index 4afe1117eb..c989267733 100644
--- a/ext/win32ole/extconf.rb
+++ b/ext/win32ole/extconf.rb
@@ -5,11 +5,13 @@
#----------------------------------
require 'mkmf'
+dir_config("win32")
def create_win32ole_makefile
if have_library("ole32") and
have_library("oleaut32") and
have_library("uuid") and
have_library("user32") and
+ have_library("kernel32") and
have_library("advapi32") and
have_header("windows.h")
create_makefile("win32ole")