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

ruby-changes:68040

From: xtkoba <ko1@a...>
Date: Mon, 20 Sep 2021 00:15:50 +0900 (JST)
Subject: [ruby-changes:68040] 637d7288f3 (master): MINGW: More permissive pattern matching for coroutine

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

From 637d7288f3b8d803c4207f5f842d408d48c20411 Mon Sep 17 00:00:00 2001
From: "xtkoba (Tee KOBAYASHI)" <xtkoba+ruby@g...>
Date: Mon, 21 Jun 2021 14:45:00 +0200
Subject: MINGW: More permissive pattern matching for coroutine

Pattern matching for target_os in configure script should be permissive if we consider suffixing something onto "mingw32".
---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 69abc37..a5de5de 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2508,10 +2508,10 @@ AS_CASE([$coroutine_type], [yes|''], [ https://github.com/ruby/ruby/blob/trunk/configure.ac#L2508
         [*86-linux*], [
             coroutine_type=x86
         ],
-        [x64-mingw32], [
+        [x64-mingw*], [
             coroutine_type=win64
         ],
-        [*86-mingw32], [
+        [*86-mingw*], [
             coroutine_type=win32
         ],
         [arm*-linux*], [
-- 
cgit v1.1


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

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