summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-11-17 17:35:47 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-11-18 23:17:26 +0100
commit96bce61bdb6499feebda583db152bfbfe40af8a5 (patch)
treed2879c786995d8d6d01c77b5c533988d1668ed6c /net-im
parentkde-misc/skanlite: remove unused patch(es) (diff)
downloadgentoo-96bce61bdb6499feebda583db152bfbfe40af8a5.tar.gz
gentoo-96bce61bdb6499feebda583db152bfbfe40af8a5.tar.bz2
gentoo-96bce61bdb6499feebda583db152bfbfe40af8a5.zip
net-im/tokodon: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/39348 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-im')
-rw-r--r--net-im/tokodon/files/tokodon-24.05.2-enable-exceptions.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/net-im/tokodon/files/tokodon-24.05.2-enable-exceptions.patch b/net-im/tokodon/files/tokodon-24.05.2-enable-exceptions.patch
deleted file mode 100644
index bc48595b2838..000000000000
--- a/net-im/tokodon/files/tokodon-24.05.2-enable-exceptions.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From e55359ddc139c2a6296b67990dee47478a4fadc8 Mon Sep 17 00:00:00 2001
-From: Joshua Goins <josh@redstrate.com>
-Date: Fri, 12 Jul 2024 12:00:43 -0400
-Subject: [PATCH] Enable C++ exceptions even when building with QtMultimedia
-
-This is also needed in blurhash.cpp, which breaks in certain system
-configurations that don't enable exceptions by default. Now it's turned
-on regardless of the USE_QTMULTIMEDIA CMake option.
-
-I also added a note for future people to discover why this is turned on.
----
- src/CMakeLists.txt | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index bca2cc094..73a8345ed 100644
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -361,9 +361,11 @@ else()
- utils/mpvplayer.h
- )
- target_link_libraries(tokodon_static PUBLIC MpvQt::MpvQt)
-- target_compile_options(tokodon_static PRIVATE -fexceptions)
- endif()
-
-+# NOTE: Needed for MPV, but also for blurhash.cpp. We can look into making this more selective lter.
-+target_compile_options(tokodon_static PRIVATE -fexceptions)
-+
- if (USE_QTWEBVIEW)
- qt_target_qml_sources(tokodon_static
- QML_FILES
---
-GitLab
-