summaryrefslogtreecommitdiff
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
commit6341bbe46c97a0e478a6ce12cddce74e31139512 (patch)
tree1c4293d59af9ea74600b5007d98855aecf71cdc2 /ext/win32ole/extconf.rb
parentacebde46a3e0b68c70aefea370c5969ec414b2ab (diff)
* 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/branches/ruby_1_8@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")