summaryrefslogtreecommitdiff
path: root/net-im/telegram-desktop/files/tdesktop-4.8.3-fix-clang.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-10-31 03:47:04 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-10-31 03:47:04 +0000
commita4d738a9d1fddef251ba88e258acdb50c243fa63 (patch)
tree1687346e6907f4670ab4015ff2e717c50d574f9c /net-im/telegram-desktop/files/tdesktop-4.8.3-fix-clang.patch
parent77922838ba6e7b5f546528626d41f2e7f3fc2c08 (diff)
gentoo auto-resync : 31:10:2023 - 03:47:04
Diffstat (limited to 'net-im/telegram-desktop/files/tdesktop-4.8.3-fix-clang.patch')
-rw-r--r--net-im/telegram-desktop/files/tdesktop-4.8.3-fix-clang.patch52
1 files changed, 0 insertions, 52 deletions
diff --git a/net-im/telegram-desktop/files/tdesktop-4.8.3-fix-clang.patch b/net-im/telegram-desktop/files/tdesktop-4.8.3-fix-clang.patch
deleted file mode 100644
index 5135c3c5ef4b..000000000000
--- a/net-im/telegram-desktop/files/tdesktop-4.8.3-fix-clang.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-Fix build issues with clang
-
-/var/tmp/portage/net-im/telegram-desktop-4.8.3/work/tdesktop-4.8.3-full/Telegram/lib_base/base/platform/linux/base_system_media_controls_linux.cpp:198:4: error: reference to 'GObject' is ambiguous
- GObject::Object,
- ^
-/usr/include/glib-2.0/gobject/gobject.h:192:42: note: candidate found by name lookup is 'GObject'
-typedef struct _GObject GObject;
- ^
-/var/tmp/portage/net-im/telegram-desktop-4.8.3/work/tdesktop-4.8.3-full_build/gen/gobject/_functions_impl.hpp:10:11: note: candidate found by name lookup is 'gi::repository::GObject'
-namespace GObject {
- ^
---- tdesktop-4.8.3-full.orig/Telegram/lib_base/base/platform/linux/base_system_media_controls_linux.cpp
-+++ tdesktop-4.8.3-full/Telegram/lib_base/base/platform/linux/base_system_media_controls_linux.cpp
-@@ -195,7 +195,7 @@
- player().set_loop_status("None");
- player().set_rate(1.0);
- const auto executeCommand = [=](
-- GObject::Object,
-+ gi::repository::GObject::Object,
- Gio::DBusMethodInvocation invocation) {
- base::Integration::Instance().enterFromEventLoop([&] {
- _commandRequests.fire_copy(
-@@ -232,23 +232,23 @@
- return true;
- });
- player().property_loop_status().signal_notify().connect([=](
-- GObject::Object,
-- GObject::ParamSpec) {
-+ gi::repository::GObject::Object,
-+ gi::repository::GObject::ParamSpec) {
- base::Integration::Instance().enterFromEventLoop([&] {
- _commandRequests.fire_copy(
- LoopStatusToCommand(player().get_loop_status()));
- });
- });
- player().property_shuffle().signal_notify().connect([=](
-- GObject::Object,
-- GObject::ParamSpec) {
-+ gi::repository::GObject::Object,
-+ gi::repository::GObject::ParamSpec) {
- base::Integration::Instance().enterFromEventLoop([&] {
- _commandRequests.fire_copy(Command::Shuffle);
- });
- });
- player().property_volume().signal_notify().connect([=](
-- GObject::Object,
-- GObject::ParamSpec) {
-+ gi::repository::GObject::Object,
-+ gi::repository::GObject::ParamSpec) {
- base::Integration::Instance().enterFromEventLoop([&] {
- _volumeChangeRequests.fire_copy(player().get_volume());
- });