summaryrefslogtreecommitdiff
path: root/package/ruby/patches/0001-fix-default-coroutine-selection.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2022-08-02 10:19:02 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2022-08-02 10:19:02 +0200
commit28cf20d1825125a1362f7006a3a9f956c4c22088 (patch)
tree0165337e31137268a693a4310bfeb017d38947f4 /package/ruby/patches/0001-fix-default-coroutine-selection.patch
parentc8af7598dda5396d49b5fb6eb42cb156f6d11396 (diff)
ruby: update to 3.1.2
Diffstat (limited to 'package/ruby/patches/0001-fix-default-coroutine-selection.patch')
-rw-r--r--package/ruby/patches/0001-fix-default-coroutine-selection.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/package/ruby/patches/0001-fix-default-coroutine-selection.patch b/package/ruby/patches/0001-fix-default-coroutine-selection.patch
deleted file mode 100644
index ea84aa9bc..000000000
--- a/package/ruby/patches/0001-fix-default-coroutine-selection.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-fixed default coroutine selection for musl/uclibc
-
-https://github.com/ruby/ruby/pull/3567/commits/b570e7de87aaad8c903176d835e8124127f627b3
-
-Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
-
-diff -Nur ruby-3.0.0.orig/configure.ac ruby-3.0.0/configure.ac
---- ruby-3.0.0.orig/configure.ac 2020-12-25 04:33:01.000000000 +0100
-+++ ruby-3.0.0/configure.ac 2021-02-22 13:00:53.990314464 +0100
-@@ -2441,7 +2441,10 @@
- rb_cv_coroutine=copy
- ],
- [
-- rb_cv_coroutine=ucontext
-+ AC_CHECK_FUNCS([getcontext swapcontext makecontext],
-+ [rb_cv_coroutine=ucontext],
-+ [rb_cv_coroutine=copy; break]
-+ )
- ]
- )
- AC_MSG_RESULT(${rb_cv_coroutine})