diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-06-28 07:59:59 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-06-28 07:59:59 +0100 |
commit | b8325835c82367d22428eb41afa0f2d375338d3c (patch) | |
tree | c416b8853bd14fc346da5d0129843cc4a68a30a0 /app-emulation/86Box | |
parent | d2ed973482fdd800013658e83a61709b29e0a80f (diff) |
gentoo auto-resync : 28:06:2024 - 07:59:59
Diffstat (limited to 'app-emulation/86Box')
-rw-r--r-- | app-emulation/86Box/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/86Box/files/86Box-4.0.1-incompatible-pointer-types.patch | 23 |
2 files changed, 0 insertions, 24 deletions
diff --git a/app-emulation/86Box/Manifest b/app-emulation/86Box/Manifest index 7ddd34694e13..905eb0c36c60 100644 --- a/app-emulation/86Box/Manifest +++ b/app-emulation/86Box/Manifest @@ -1,4 +1,3 @@ -AUX 86Box-4.0.1-incompatible-pointer-types.patch 826 BLAKE2B 79080877c25dc1292e743a03225ec95994284d7999443da91e81f492dc2c7e8d7e2987304fbb21b62c3cb6406a175c90f821963822db609436cf10fee36077e3 SHA512 270960bfad2b99b0c4c8d7e3b889f0601490ed780c5ddde619efdb57bdf6d20309e079b77a986625a7824bbc5dce47199a1534be0bef0b9448221ff52cab5457 DIST 86Box-4.1.1.tar.gz 5383817 BLAKE2B 04a03f039e3112e9dc02d25073afdf53d45603a71e27f8377309667917f30ef9f213cf0a7a6d8c2f4c2f1dd0fd73adfac3bbd8f0f9fc4b47fb2e9cbedffb4b6c SHA512 d1b0a1810f8712464ce8266942e9bfdc9721ab4ac70bbb242b3b06d6a7d6613b7bcb0ba730a2e458b2731c8d58e38c4b245b6f4afb5ee6c11ab4a2fb0dfd6d5e EBUILD 86Box-4.1.1-r1.ebuild 1882 BLAKE2B d3d60f85b13dc6812928e03bff9386f8e41a2a90d9e82c288ce46b746962bc700d92691003ba0219d008e988ecf00c5c71075222a520f18b5df067b48875749d SHA512 1d35af112d06c067c13c26af737c779b0fbd4429fabbf8fbfeecbe9a109193535ceb45b283b2ecade30acfa601520b4597d8e504842df1b38f177fe4e01ddff8 MISC metadata.xml 1066 BLAKE2B d5cf35e3d6feca5dbc2aeefe48331941f641195b9d0712df4c3589dedf041397e733b331d832d35099bb26701dd8598b317a8de1a62d955688429d0ffe4a527a SHA512 63909161608115764a28aea61bb1e5e15a34a05a8adaf5a5529d82a5d3f0ea3726340f34178d7c64bfa704b7ff84af4830f636e9536552ccab2050328fc5ee84 diff --git a/app-emulation/86Box/files/86Box-4.0.1-incompatible-pointer-types.patch b/app-emulation/86Box/files/86Box-4.0.1-incompatible-pointer-types.patch deleted file mode 100644 index df708d337b65..000000000000 --- a/app-emulation/86Box/files/86Box-4.0.1-incompatible-pointer-types.patch +++ /dev/null @@ -1,23 +0,0 @@ -From 13d582b56faf9caca114ec5625b34a7859ecb41f Mon Sep 17 00:00:00 2001 -From: OBattler <oubattler@gmail.com> -Date: Fri, 5 Jan 2024 13:01:17 +0100 -Subject: [PATCH] Unix: Use proper parentheses to cast the result, not the - flags, fixes #3994. - ---- - src/unix/unix.c | 4 +--- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/unix/unix.c b/src/unix/unix.c -index e784df38e6..cfa8243135 100644 ---- a/src/unix/unix.c -+++ b/src/unix/unix.c -@@ -635,7 +635,7 @@ - SDL_MessageBoxData msgdata; - SDL_MessageBoxButtonData msgbtn; - if (!header) -- header = (void *) (flags & MBX_ANSI) ? "86Box" : L"86Box"; -+ header = (void *) ((flags & MBX_ANSI) ? "86Box" : L"86Box"); - if (header <= (void *) 7168) - header = (void *) plat_get_string((int) header); - if (message <= (void *) 7168) |