summaryrefslogtreecommitdiff
path: root/gui-wm
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-01-06 10:31:34 +0100
committerYixun Lan <dlan@gentoo.org>2024-01-06 10:14:37 +0000
commit7893c6d3a255d9d4538b30344e42a8b6acdb57a4 (patch)
tree18abb75c2ddd7edb1fa162e4c101d183ebecfcb5 /gui-wm
parentnet-im/telegram-desktop-bin: version bump 4.14.2 (diff)
downloadgentoo-7893c6d3a255d9d4538b30344e42a8b6acdb57a4.tar.gz
gentoo-7893c6d3a255d9d4538b30344e42a8b6acdb57a4.tar.bz2
gentoo-7893c6d3a255d9d4538b30344e42a8b6acdb57a4.zip
gui-wm/hyprland: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/34670 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'gui-wm')
-rw-r--r--gui-wm/hyprland/files/hyprland-0.31.0-fix-log-headers.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/gui-wm/hyprland/files/hyprland-0.31.0-fix-log-headers.patch b/gui-wm/hyprland/files/hyprland-0.31.0-fix-log-headers.patch
deleted file mode 100644
index 7abd8164c9b4..000000000000
--- a/gui-wm/hyprland/files/hyprland-0.31.0-fix-log-headers.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 5dd0637e90efa17e391b67934998936194701d08 Mon Sep 17 00:00:00 2001
-From: memchr <memchr@proton.me>
-Date: Mon, 16 Oct 2023 16:22:01 +0000
-Subject: [PATCH] fix(build): do not include wlr headers directly, use
- includes.hpp instead.
-
----
- src/debug/Log.hpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/debug/Log.hpp b/src/debug/Log.hpp
-index 125ed7f45d..085465c911 100644
---- a/src/debug/Log.hpp
-+++ b/src/debug/Log.hpp
-@@ -1,10 +1,10 @@
- #pragma once
- #include <string>
--#include <wlr/util/log.h>
- #include <format>
- #include <iostream>
- #include <fstream>
- #include <chrono>
-+#include "../includes.hpp"
- #include "../helpers/MiscFunctions.hpp"
-
- #define LOGMESSAGESIZE 1024
-@@ -79,4 +79,4 @@ namespace Debug {
- }
-
- void wlrLog(wlr_log_importance level, const char* fmt, va_list args);
--};
-\ No newline at end of file
-+};