aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.in2
-rw-r--r--version.h4
3 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7fe58de268..22190adf2c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,10 @@ Mon Sep 18 17:46:11 2000 Yukihiro Matsumoto <matz@ruby-lang.org>
* stable version 1.6.0 released.
+Tue Sep 19 14:01:01 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
+
+ * configure.in: include version number in RUBY_SO_NAME.
+
Tue Sep 19 01:14:56 2000 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_provide): better feature handling.
diff --git a/configure.in b/configure.in
index 6d35250417..055f42229e 100644
--- a/configure.in
+++ b/configure.in
@@ -849,7 +849,7 @@ case "$target_os" in
esac
;;
cygwin*|mingw*)
- RUBY_SO_NAME='$(RUBY_INSTALL_NAME)'.$target_os
+ RUBY_SO_NAME=$target_os-'$(RUBY_INSTALL_NAME)'-${MAJOR}.${MINOR}
if test x"$enable_shared" = xyes; then
LIBRUBY_SO='$(RUBY_SO_NAME)'.dll
LIBRUBY_DLDFLAGS='--dllname=$@ --output-lib=$(LIBRUBY) --add-stdcall-alias --def=$(RUBYDEF)'
diff --git a/version.h b/version.h
index 12b6097c31..6a86e01862 100644
--- a/version.h
+++ b/version.h
@@ -1,4 +1,4 @@
#define RUBY_VERSION "1.6.0"
-#define RUBY_RELEASE_DATE "2000-09-18"
+#define RUBY_RELEASE_DATE "2000-09-19"
#define RUBY_VERSION_CODE 160
-#define RUBY_RELEASE_CODE 20000918
+#define RUBY_RELEASE_CODE 20000919