aboutsummaryrefslogtreecommitdiff
path: root/devel/pecl-swoole/files
diff options
context:
space:
mode:
Diffstat (limited to 'devel/pecl-swoole/files')
-rw-r--r--devel/pecl-swoole/files/patch-include_swoole__socket.h10
-rw-r--r--devel/pecl-swoole/files/patch-src_coroutine_system.cc12
2 files changed, 0 insertions, 22 deletions
diff --git a/devel/pecl-swoole/files/patch-include_swoole__socket.h b/devel/pecl-swoole/files/patch-include_swoole__socket.h
deleted file mode 100644
index 302c92fb3b28..000000000000
--- a/devel/pecl-swoole/files/patch-include_swoole__socket.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- include/swoole_socket.h.orig 2021-07-16 07:18:11 UTC
-+++ include/swoole_socket.h
-@@ -17,6 +17,7 @@
-
- #pragma once
-
-+#include <sys/types.h>
- #include <sys/socket.h>
- #include <sys/un.h>
- #include <sys/uio.h>
diff --git a/devel/pecl-swoole/files/patch-src_coroutine_system.cc b/devel/pecl-swoole/files/patch-src_coroutine_system.cc
deleted file mode 100644
index ad235fcfbf97..000000000000
--- a/devel/pecl-swoole/files/patch-src_coroutine_system.cc
+++ /dev/null
@@ -1,12 +0,0 @@
---- src/coroutine/system.cc.orig 2024-11-28 03:39:05 UTC
-+++ src/coroutine/system.cc
-@@ -701,7 +701,8 @@ std::shared_ptr<AsyncLock> async_lock(void *resource)
- "resource(%p) has already been bound to another coroutine#%ld, "
- "%s of the same resource in coroutine#%ld at the same time is not allowed",
- resource,
-- *iter,
-+ iter->second,
-+ iter->first,
- Coroutine::get_current_cid());
- return nullptr;
- }