1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@944 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2000-09-19 05:03:07 +00:00
parent 79a8072910
commit c74a3b21f5
3 changed files with 7 additions and 3 deletions

View file

@ -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.

View file

@ -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)'

View file

@ -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