summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-05-05 20:27:35 +0200
committerPatrick McLean <chutzpah@gentoo.org>2022-05-05 15:51:36 -0700
commitad20f0bba7a59b6854685f0f8170074235396377 (patch)
treeb47c7e3471e8102f073278becc001a51a9ddb015 /sys-cluster
parentapp-metrics/ceph_exporter: initial import (diff)
downloadgentoo-ad20f0bba7a59b6854685f0f8170074235396377.tar.gz
gentoo-ad20f0bba7a59b6854685f0f8170074235396377.tar.bz2
gentoo-ad20f0bba7a59b6854685f0f8170074235396377.zip
sys-cluster/ceph: remove unused patch
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/25335 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
Diffstat (limited to 'sys-cluster')
-rw-r--r--sys-cluster/ceph/files/ceph-17.2.0-boost-1.74.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/sys-cluster/ceph/files/ceph-17.2.0-boost-1.74.patch b/sys-cluster/ceph/files/ceph-17.2.0-boost-1.74.patch
deleted file mode 100644
index 8fa7330520d8..000000000000
--- a/sys-cluster/ceph/files/ceph-17.2.0-boost-1.74.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 722b4303b1986ce93744af5baeecde7681d8e347 Mon Sep 17 00:00:00 2001
-From: Casey Bodley <cbodley@redhat.com>
-Date: Mon, 25 Jan 2021 13:08:35 -0500
-Subject: [PATCH] cmake: boost>=1.74 adds BOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT
- to radosgw
-
-Fixes: https://tracker.ceph.com/issues/48988
-
-Signed-off-by: Casey Bodley <cbodley@redhat.com>
----
- src/rgw/CMakeLists.txt | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/src/rgw/CMakeLists.txt b/src/rgw/CMakeLists.txt
-index 1b8cb81b8f2c1..12b42e4077f5a 100644
---- a/src/rgw/CMakeLists.txt
-+++ b/src/rgw/CMakeLists.txt
-@@ -1,3 +1,7 @@
-+if(Boost_VERSION VERSION_GREATER_EQUAL 1.74)
-+ add_definitions(-DBOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT)
-+endif()
-+
- add_custom_target(civetweb_h
- COMMAND ${CMAKE_COMMAND} -E make_directory
- "${CMAKE_BINARY_DIR}/src/include/civetweb"