From f782d6750b1b5a51bcddcaf6addc1109cc6388f0 Mon Sep 17 00:00:00 2001 From: eban Date: Tue, 10 Oct 2000 07:20:10 +0000 Subject: eban git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ dln.c | 11 ----------- version.h | 4 ++-- 3 files changed, 6 insertions(+), 13 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9cc9c5e17..2613fdab8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Oct 10 16:11:54 2000 WATANABE Hirofumi + + * dln.c (dln_load): remove unused code for cygwin. + Tue Oct 10 09:49:23 2000 Yukihiro Matsumoto * file.c (Init_File): FileTest.size should return 0 (not nil) for diff --git a/dln.c b/dln.c index 6f673e53a..c843bee57 100644 --- a/dln.c +++ b/dln.c @@ -1229,11 +1229,7 @@ dln_load(file) /* Load the file as an object one */ init_funcname(buf, file); -#ifdef __CYGWIN32__ - cygwin32_conv_to_win32_path(file, winfile); -#else strcpy(winfile, file); -#endif /* Load file */ if ((handle = @@ -1242,13 +1238,6 @@ dln_load(file) goto failed; } -#ifdef __CYGWIN32__ - init_fct = (void(*)())GetProcAddress(handle, "impure_setup"); - - if (init_fct) - init_fct(_impure_ptr); -#endif - if ((init_fct = (void(*)())GetProcAddress(handle, buf)) == NULL) { printf("GetProcAddress %s\n", buf); goto failed; diff --git a/version.h b/version.h index 59c6536f3..daa6c426a 100644 --- a/version.h +++ b/version.h @@ -1,4 +1,4 @@ #define RUBY_VERSION "1.6.2" -#define RUBY_RELEASE_DATE "2000-10-08" +#define RUBY_RELEASE_DATE "2000-10-10" #define RUBY_VERSION_CODE 162 -#define RUBY_RELEASE_CODE 20001008 +#define RUBY_RELEASE_CODE 20001010 -- cgit