summaryrefslogtreecommitdiffstats
path: root/configure.in
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 /configure.in
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
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 3 insertions, 0 deletions
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)
;;