[前][次][番号順一覧][スレッド一覧]

ruby-changes:66700

From: Nobuyoshi <ko1@a...>
Date: Tue, 6 Jul 2021 21:03:20 +0900 (JST)
Subject: [ruby-changes:66700] c5e6fa4853 (master): Moved native coroutine type checking message

https://git.ruby-lang.org/ruby.git/commit/?id=c5e6fa4853

From c5e6fa4853a2e71b43377931f686d6eb41aacc52 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Tue, 6 Jul 2021 19:20:39 +0900
Subject: Moved native coroutine type checking message

Not to be interleaved by fallback checking messages
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index f74dbdc..d6f00aa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2486,7 +2486,6 @@ AC_ARG_WITH(coroutine, https://github.com/ruby/ruby/blob/trunk/configure.ac#L2486
     AS_HELP_STRING([--with-coroutine=IMPLEMENTATION], [specify the coroutine implementation to use]),
     [coroutine_type=$withval], [coroutine_type=])
 AS_CASE([$coroutine_type], [yes|''], [
-    AC_MSG_CHECKING(native coroutine implementation for ${target_cpu}-${target_os})
     coroutine_type=
     AS_CASE(["$target_cpu-$target_os"],
         [universal-darwin*], [
@@ -2548,6 +2547,7 @@ AS_CASE([$coroutine_type], [yes|''], [ https://github.com/ruby/ruby/blob/trunk/configure.ac#L2547
             )
         ]
     )
+    AC_MSG_CHECKING(native coroutine implementation for ${target_cpu}-${target_os})
     AC_MSG_RESULT(${coroutine_type})
 ])
 COROUTINE_H=coroutine/$coroutine_type/Context.h
-- 
cgit v1.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]