Gentoo Archives: gentoo-commits

From: Jory Pratt <anarchy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/musl:master commit in: sys-boot/syslinux/files/
Date: Thu, 31 Mar 2022 14:12:02
Message-Id: 1648735894.2fa041a59711de775aeff1d3fa805a00cb099ebd.anarchy@gentoo
1 commit: 2fa041a59711de775aeff1d3fa805a00cb099ebd
2 Author: Alex R <lyssdod <AT> gmail <DOT> com>
3 AuthorDate: Mon Nov 22 03:13:39 2021 +0000
4 Commit: Jory Pratt <anarchy <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 31 14:11:34 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=2fa041a5
7
8 sys-boot/syslinux: fix patch for musl
9
10 Closes: https://github.com/gentoo/musl/pull/457
11
12 Signed-off-by: Alex Revin <lyssdod <AT> gmail.com>
13 Signed-off-by: Jory Pratt <anarchy <AT> gentoo.org>
14
15 sys-boot/syslinux/files/syslinux-musl.patch | 6 ++++--
16 1 file changed, 4 insertions(+), 2 deletions(-)
17
18 diff --git a/sys-boot/syslinux/files/syslinux-musl.patch b/sys-boot/syslinux/files/syslinux-musl.patch
19 index ba89d3b7..a707bd7a 100644
20 --- a/sys-boot/syslinux/files/syslinux-musl.patch
21 +++ b/sys-boot/syslinux/files/syslinux-musl.patch
22 @@ -1,9 +1,11 @@
23 --- syslinux-6.04-pre1/efi/wrapper.h.orig 2018-05-28 09:29:03.313673979 +0000
24 +++ syslinux-6.04-pre1/efi/wrapper.h 2018-05-28 09:22:27.546908344 +0000
25 -@@ -26,6 +26,19 @@
26 +@@ -26,6 +26,21 @@
27 #define __packed __attribute__((packed))
28 #define OFFSETOF(t,m) ((size_t)&((t *)0)->m)
29 -
30 +
31 ++#include <stdint.h>
32 ++
33 +#ifndef __uint8_t
34 +#define __uint8_t uint8_t
35 +#endif