summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-04-18 20:17:17 +0200
committerConrad Kostecki <conikost@gentoo.org>2024-04-18 21:31:49 +0200
commit092d34666c7117b376e3b6b0b3a309879a7209b2 (patch)
treec6d096900abf0943402c0f4b22acfde110d84ac9 /x11-terms
parentx11-misc/dmenu: remove unused patch (diff)
downloadgentoo-092d34666c7117b376e3b6b0b3a309879a7209b2.tar.gz
gentoo-092d34666c7117b376e3b6b0b3a309879a7209b2.tar.bz2
gentoo-092d34666c7117b376e3b6b0b3a309879a7209b2.zip
x11-terms/kitty: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/36312 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'x11-terms')
-rw-r--r--x11-terms/kitty/files/kitty-0.33.0-no-simd.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/x11-terms/kitty/files/kitty-0.33.0-no-simd.patch b/x11-terms/kitty/files/kitty-0.33.0-no-simd.patch
deleted file mode 100644
index c1366c0ce73c..000000000000
--- a/x11-terms/kitty/files/kitty-0.33.0-no-simd.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Backport of fix for -DKITTY_NO_SIMD (aka for non-x86/amd64/arm64)
-https://github.com/kovidgoyal/kitty/issues/7225
-https://github.com/kovidgoyal/kitty/commit/393169f79daf60c038b3e11e657fa5f3ee41c24c
---- a/kitty/simd-string-impl.h
-+++ b/kitty/simd-string-impl.h
-@@ -21,5 +21,5 @@
- bool FUNC(utf8_decode_to_esc)(UTF8Decoder *d UNUSED, const uint8_t *src UNUSED, size_t src_sz UNUSED) NOSIMD
- const uint8_t* FUNC(find_either_of_two_bytes)(const uint8_t *haystack UNUSED, const size_t sz UNUSED, const uint8_t a UNUSED, const uint8_t b UNUSED) NOSIMD
--void FUNC(xor_data64)(const uint8_t key[64], uint8_t* data, const size_t data_sz);
-+void FUNC(xor_data64)(const uint8_t key[64] UNUSED, uint8_t* data UNUSED, const size_t data_sz UNUSED) NOSIMD
- #undef NOSIMD
- #else