summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-12-24 09:56:31 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2022-12-24 15:48:06 +0100
commit1e97075934c5241362b48cae77ebf7a5f964b143 (patch)
tree43f961b48e6d26ec41505265dbc9bfb6de91dc8d /dev-games/aseprite/files
parentapp-misc/dvtm: drop 0.15-r5 (diff)
downloadgentoo-1e97075934c5241362b48cae77ebf7a5f964b143.tar.gz
gentoo-1e97075934c5241362b48cae77ebf7a5f964b143.tar.bz2
gentoo-1e97075934c5241362b48cae77ebf7a5f964b143.zip
dev-games/aseprite: drop 1.1.9
Closes: https://bugs.gentoo.org/886897 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-games/aseprite/files')
-rw-r--r--dev-games/aseprite/files/aseprite-1.1.7_type-punned_pointer.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-games/aseprite/files/aseprite-1.1.7_type-punned_pointer.patch b/dev-games/aseprite/files/aseprite-1.1.7_type-punned_pointer.patch
deleted file mode 100644
index ca0921437fc8..000000000000
--- a/dev-games/aseprite/files/aseprite-1.1.7_type-punned_pointer.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff --git a/src/allegro/src/x/xkeyboard.c b/src/allegro/src/x/xkeyboard.c
-index f121e62..86fa4f7 100644
---- a/src/allegro/src/x/xkeyboard.c
-+++ b/src/allegro/src/x/xkeyboard.c
-@@ -356,6 +356,14 @@ static int find_unknown_key_assignment (int i)
- return _xwin.keycode_to_scancode[i];
- }
-
-+/* unicode_getc:
-+ * Reads a character from a Unicode string.
-+ */
-+static int unicode_getc(AL_CONST char *s)
-+{
-+ return *((unsigned short *)s);
-+}
-+
-
-
- /* _xwin_keyboard_handler:
-@@ -412,7 +420,7 @@ void _xwin_keyboard_handler(XKeyEvent *event, int dga2_hack)
- }
- buffer[len] = '\0';
- uconvert(buffer, U_UTF8, buffer2, U_UNICODE, sizeof buffer2);
-- unicode = *(unsigned short *)buffer2;
-+ unicode = unicode_getc(buffer2);
-
- #ifdef ALLEGRO_XWINDOWS_WITH_XIM
- r = XFilterEvent((XEvent *)event, _xwin.window);