mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in (THREAD_MODEL): modified message when no thread
model is available. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25162 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
46313c96c7
commit
e8f007e6b8
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Sep 30 00:00:30 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* configure.in (THREAD_MODEL): modified message when no thread
|
||||
model is available.
|
||||
|
||||
Tue Sep 29 23:17:32 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* io.c (rb_scan_open_args): rb_utf8mac_encoding is undefined.
|
||||
|
|
|
@ -2246,6 +2246,9 @@ when(pthread)
|
|||
;;
|
||||
when(win32)
|
||||
;;
|
||||
when("")
|
||||
AC_MSG_ERROR(thread model is missing)
|
||||
;;
|
||||
when(*)
|
||||
AC_MSG_ERROR(unknown thread model $THREAD_MODEL)
|
||||
;;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#define RUBY_VERSION "1.9.2"
|
||||
#define RUBY_RELEASE_DATE "2009-09-29"
|
||||
#define RUBY_RELEASE_DATE "2009-09-30"
|
||||
#define RUBY_PATCHLEVEL -1
|
||||
#define RUBY_BRANCH_NAME "trunk"
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
|||
#define RUBY_VERSION_TEENY 1
|
||||
#define RUBY_RELEASE_YEAR 2009
|
||||
#define RUBY_RELEASE_MONTH 9
|
||||
#define RUBY_RELEASE_DAY 29
|
||||
#define RUBY_RELEASE_DAY 30
|
||||
|
||||
#include "ruby/version.h"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue