summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-10-07 22:23:58 +0200
committerCraig Andrews <candrews@gentoo.org>2022-10-09 21:47:05 -0400
commit0468c3cfd5be1bf3ed12af647c8d9432a0defb70 (patch)
tree9d53120f46f95435afc2e1ea22e5a73003efa15d /media-tv
parentsys-apps/osinfo-db-tools: Add revbump that uses libsoup:3.0 (diff)
downloadgentoo-0468c3cfd5be1bf3ed12af647c8d9432a0defb70.tar.gz
gentoo-0468c3cfd5be1bf3ed12af647c8d9432a0defb70.tar.bz2
gentoo-0468c3cfd5be1bf3ed12af647c8d9432a0defb70.zip
media-tv/kodi: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/27683 Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'media-tv')
-rw-r--r--media-tv/kodi/files/kodi-19.1-fmt-8.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/media-tv/kodi/files/kodi-19.1-fmt-8.patch b/media-tv/kodi/files/kodi-19.1-fmt-8.patch
deleted file mode 100644
index ea82d007910d..000000000000
--- a/media-tv/kodi/files/kodi-19.1-fmt-8.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://github.com/xbmc/xbmc/pull/19904
-
-From 18ff80a9c169fb969b75e2143d9f1f234b71a730 Mon Sep 17 00:00:00 2001
-From: Craig Andrews <candrews@integralblue.com>
-Date: Thu, 24 Jun 2021 20:41:11 -0400
-Subject: [PATCH] [utils] include fmt/xchar.h
-
-fmt 8 moved wchar/custom char overloads to xchar.h, so for fmt 8 compatibility, xchar.h must be included
-
-See https://github.com/fmtlib/fmt/commit/76ee490468212f8705a1421b4c88f8f814b2d351
----
- xbmc/utils/StringUtils.h | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/xbmc/utils/StringUtils.h b/xbmc/utils/StringUtils.h
-index ca6f82953d90a..2dc5c3f03af2f 100644
---- a/xbmc/utils/StringUtils.h
-+++ b/xbmc/utils/StringUtils.h
-@@ -36,6 +36,9 @@
- #if FMT_VERSION >= 40000
- #include <fmt/printf.h>
- #endif
-+#if FMT_VERSION >= 80000
-+#include <fmt/xchar.h>
-+#endif
-
- #include "XBDateTime.h"
- #include "utils/params_check_macros.h"