summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorxtkoba (Tee KOBAYASHI) <xtkoba+ruby@gmail.com>2021-06-21 14:45:00 +0200
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-09-20 00:15:30 +0900
commit637d7288f3b8d803c4207f5f842d408d48c20411 (patch)
treef4b770d9c0181104b35cc6e93eb61a688bcd8586 /configure.ac
parent8bda51287865c0d9fe38d7cb39c60070159a6ea3 (diff)
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".
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4599
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 69abc379ba..a5de5de211 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2508,10 +2508,10 @@ AS_CASE([$coroutine_type], [yes|''], [
[*86-linux*], [
coroutine_type=x86
],
- [x64-mingw32], [
+ [x64-mingw*], [
coroutine_type=win64
],
- [*86-mingw32], [
+ [*86-mingw*], [
coroutine_type=win32
],
[arm*-linux*], [