summaryrefslogtreecommitdiff
path: root/package/flashrom/0002-sys-io.h.patch
blob: 8d990c6f916040d6b490a445dbf1d086ec2a3c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
hwaccess: sys/io.h is not specific to glibc

Under Linux, sys/io.h provides inb and outb, so we really need it.
However, its inclusion is conditional to the _GLIBC_ define. This is
usually OK under Linux, since both glibc and uClibc define it (uclibc
fakes being glibc).

But the musl C library does not impersonate glibc, so we're missing
including sys/io.h in this case.

Change the include from checking _GLIBC_ to checking whether this is
Linux, looking for the __linux__ define.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

diff -durN flashrom-0.9.8.orig/hwaccess.h flashrom-0.9.8/hwaccess.h
--- flashrom-0.9.8.orig/hwaccess.h	2015-02-10 09:03:10.000000000 +0100
+++ flashrom-0.9.8/hwaccess.h	2015-10-28 20:01:54.259202484 +0100
@@ -27,7 +27,7 @@
 #include "platform.h"
 
 #if IS_X86
-#if defined(__GLIBC__)
+#if defined(__linux__)
 #include <sys/io.h>
 #endif
 #endif