summaryrefslogtreecommitdiff
path: root/dev-cpp/fbthrift/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-cpp/fbthrift/files
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-cpp/fbthrift/files')
-rw-r--r--dev-cpp/fbthrift/files/fbthrift-2025.04.14.00-Use-FOLLY_HAS_LIBURING-to-check-for-liburing-support.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/dev-cpp/fbthrift/files/fbthrift-2025.04.14.00-Use-FOLLY_HAS_LIBURING-to-check-for-liburing-support.patch b/dev-cpp/fbthrift/files/fbthrift-2025.04.14.00-Use-FOLLY_HAS_LIBURING-to-check-for-liburing-support.patch
deleted file mode 100644
index bcb039ad8e4d..000000000000
--- a/dev-cpp/fbthrift/files/fbthrift-2025.04.14.00-Use-FOLLY_HAS_LIBURING-to-check-for-liburing-support.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 99f1ffbd2ff912d0407aa75f980ef918187c6525 Mon Sep 17 00:00:00 2001
-From: sin-ack <sin-ack@protonmail.com>
-Date: Mon, 21 Apr 2025 16:31:18 +0200
-Subject: [PATCH] Use FOLLY_HAS_LIBURING to check for liburing support in Folly
-
-Folly may not be compiled with liburing support enabled, in which case
-the liburing classes must not be used.
----
- thrift/lib/cpp2/security/SSLUtil.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/thrift/lib/cpp2/security/SSLUtil.cpp b/thrift/lib/cpp2/security/SSLUtil.cpp
-index 52a15b66de..dbc67dfd81 100644
---- a/thrift/lib/cpp2/security/SSLUtil.cpp
-+++ b/thrift/lib/cpp2/security/SSLUtil.cpp
-@@ -133,7 +133,7 @@ folly::AsyncSocketTransport::UniquePtr moveToPlaintext(FizzSocket* fizzSock) {
-
- auto sock = fizzSock->template getUnderlyingTransport<folly::AsyncSocket>();
- folly::AsyncSocketTransport::UniquePtr plaintextTransport;
--#if defined(__linux__) && __has_include(<liburing.h>)
-+#if FOLLY_HAS_LIBURING
- if (!sock &&
- fizzSock->template getUnderlyingTransport<folly::AsyncIoUringSocket>()) {
- // `AsyncFdSocket` currently lacks uring support, so hardcode `AsyncSocket`
---
-2.49.0
-