summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-29 15:00:32 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-29 15:00:32 +0000
commitda707bbaf1460d2f4da23960f1f1b59fce4937df (patch)
treefc083e9dfecd22b1b41cac8fb344a075077f6c80
parenta0b1906a2fed6e04fe02084d01496b0cda819992 (diff)
downloadruby-da707bbaf1460d2f4da23960f1f1b59fce4937df.tar.gz
ruby-da707bbaf1460d2f4da23960f1f1b59fce4937df.tar.xz
ruby-da707bbaf1460d2f4da23960f1f1b59fce4937df.zip
* configure.in (THREAD_MODEL): modified message when no thread
model is available. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25162 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--configure.in3
-rw-r--r--version.h4
3 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 84da82d94..f5b395df3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/configure.in b/configure.in
index 03577ddb8..e56766244 100644
--- a/configure.in
+++ b/configure.in
@@ -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)
;;
diff --git a/version.h b/version.h
index 9afaaaecd..4dec05328 100644
--- a/version.h
+++ b/version.h
@@ -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"