summaryrefslogtreecommitdiff
path: root/ext/dl/handle.c
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-05 03:13:18 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-05 03:13:18 +0000
commit20e2c4cb365041c3672760f1ef829d870b7c2601 (patch)
tree9d5758c156c46adde39f3a3edb46c94e840292d9 /ext/dl/handle.c
parentd56a76a66406ce08d34ebadba7896b50fb0c8950 (diff)
* Use _WIN32 rather than checking for windows.h. Thanks Jon Forums!
[ruby-core:33977] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dl/handle.c')
-rw-r--r--ext/dl/handle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dl/handle.c b/ext/dl/handle.c
index ed042e12c7..6fc771ceb9 100644
--- a/ext/dl/handle.c
+++ b/ext/dl/handle.c
@@ -7,7 +7,7 @@
VALUE rb_cDLHandle;
-#ifdef HAVE_WINDOWS_H
+#ifdef _WIN32
# ifndef _WIN32_WCE
static void *
w32_coredll(void)
@@ -142,7 +142,7 @@ rb_dlhandle_initialize(int argc, VALUE argv[], VALUE self)
rb_secure(2);
-#if defined(HAVE_WINDOWS_H)
+#if defined(_WIN32)
if( !clib ){
HANDLE rb_libruby_handle(void);
ptr = rb_libruby_handle();