summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-06 09:00:32 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-06 09:00:32 +0000
commit1fa55abe2c3b1430f36ae981ea1857076413081e (patch)
treeb095c276f22091bb5e2016c08194433cf48cf62a
parentfc7cdfdea91d61bd901d0ba216f718b7e12c2ebd (diff)
* dln.c (dln_load): use LoadLibrary instead of LoadLibraryEx.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@2165 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--dln.c3
-rw-r--r--version.h4
3 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a56f79a33..5fcbe4e1c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Mar 6 17:58:08 2002 WATANABE Hirofumi <eban@ruby-lang.org>
+
+ * dln.c (dln_load): use LoadLibrary instead of LoadLibraryEx.
+
Tue Mar 5 03:39:27 2002 Usaku Nakamura <usa@ruby-lang.org>
* ext/extmk.rb.in (create_makefile): remove unnecessary -L option from
diff --git a/dln.c b/dln.c
index 27d12a3336..d9f8e1e48e 100644
--- a/dln.c
+++ b/dln.c
@@ -1236,8 +1236,7 @@ dln_load(file)
strcpy(winfile, file);
/* Load file */
- if ((handle =
- LoadLibraryExA(winfile, NULL, LOAD_WITH_ALTERED_SEARCH_PATH)) == NULL) {
+ if ((handle = LoadLibrary(winfile)) == NULL) {
goto failed;
}
diff --git a/version.h b/version.h
index 508fffc286..bb59d24119 100644
--- a/version.h
+++ b/version.h
@@ -1,4 +1,4 @@
#define RUBY_VERSION "1.6.7"
-#define RUBY_RELEASE_DATE "2002-03-01"
+#define RUBY_RELEASE_DATE "2002-03-06"
#define RUBY_VERSION_CODE 167
-#define RUBY_RELEASE_CODE 20020301
+#define RUBY_RELEASE_CODE 20020306