From d62a9f00b87a378cdf1f52fe63e9bcfde62a853b Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 16 May 2010 16:23:19 +0000 Subject: * dln.c (dln_load): check imported addresses only when compiled for ruby. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27853 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- dln.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dln.c b/dln.c index 783dacc184..8d2b62eba2 100644 --- a/dln.c +++ b/dln.c @@ -1265,11 +1265,13 @@ dln_load(const char *file) goto failed; } +#if defined _WIN32 && defined RUBY_EXPORT if (!rb_w32_check_imported(handle, rb_libruby_handle())) { FreeLibrary(handle); error = "incompatible library version"; goto failed; } +#endif if ((init_fct = (void(*)())GetProcAddress(handle, buf)) == NULL) { dln_loaderror("%s - %s\n%s", dln_strerror(), buf, file); -- cgit v1.2.3