diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-19 05:03:07 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-19 05:03:07 +0000 |
commit | 738c94a8923ae2bc8ec75e027cfea84457bbd96c (patch) | |
tree | 0c694a6712fe61bba0858c52015c397aa5ed86c4 | |
parent | 3c3abf8d9e4d3069a1388f811002bdb343d5e3c6 (diff) | |
download | ruby-738c94a8923ae2bc8ec75e027cfea84457bbd96c.tar.gz ruby-738c94a8923ae2bc8ec75e027cfea84457bbd96c.tar.xz ruby-738c94a8923ae2bc8ec75e027cfea84457bbd96c.zip |
eban
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@944 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | version.h | 4 |
3 files changed, 7 insertions, 3 deletions
@@ -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 6d3525041..055f42229 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)' @@ -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 |