summaryrefslogtreecommitdiff
path: root/sys-fs/dd-rescue/files/dd_rescue-1.99-musl-r2.patch
blob: c98ddeca13a0e39745f7b58de8c7e89b0f52af0e (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
From e96b79c9e4cd6c40ba6e5fe495904f07a95fb909 Mon Sep 17 00:00:00 2001
From: Thomas Deutschmann <whissi@gentoo.org>
Date: Wed, 13 Dec 2017 01:02:12 +0100
Subject: [PATCH 49/49] loff_t and __WORDSIZE includes for MUSL

Rewrite of Justin Keogh's patch [Link 1] to fix build problems
on ARM.

Link 1: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f5abc0f1b036921d6eb5b0f434c960ed280619f
Fixes: https://bugs.gentoo.org/616364
---
 configure.in  | 2 +-
 ddr_ctrl.h    | 3 +++
 ffs.h         | 3 +++
 fiemap.h      | 4 ++++
 fmt_no.h      | 2 ++
 fstrim.h      | 3 +++
 libddr_hash.c | 4 ++++
 libddr_lzo.c  | 3 +++
 libddr_null.c | 3 +++
 sha512.h      | 4 ++++
 10 files changed, 30 insertions(+), 1 deletion(-)

diff --git a/configure.in b/configure.in
index eb2e813..355ea84 100644
--- a/configure.in
+++ b/configure.in
@@ -6,7 +6,7 @@ AC_C_INLINE
 AC_HEADER_STDC
 #AC_PROG_INSTALL
 #CFLAGS="$CFLAGS -DHAVE_CONFIG_H"
-AC_CHECK_HEADERS([fallocate.h dlfcn.h unistd.h attr/xattr.h sys/acl.h sys/ioctl.h endian.h linux/fs.h linux/fiemap.h stdint.h lzo/lzo1x.h openssl/evp.h linux/random.h malloc.h sched.h sys/statvfs.h])
+AC_CHECK_HEADERS([fallocate.h dlfcn.h unistd.h attr/xattr.h sys/acl.h sys/ioctl.h sys/reg.h endian.h linux/fs.h linux/fiemap.h stdint.h lzo/lzo1x.h openssl/evp.h linux/random.h malloc.h sched.h sys/statvfs.h])
 AC_CHECK_FUNCS([ffs ffsl basename fallocate64 splice getopt_long open64 pread pread64 lseek64 stat64 posix_fadvise posix_fadvise64 __builtin_prefetch htobe64 feof_unlocked getline getentropy getrandom posix_memalign valloc sched_yield fstatvfs __builtin_cpu_supports])
 AC_CHECK_LIB(dl,dlsym)
 AC_CHECK_LIB(fallocate,linux_fallocate64)
diff --git a/ddr_ctrl.h b/ddr_ctrl.h
index ac71e4f..58cffd5 100644
--- a/ddr_ctrl.h
+++ b/ddr_ctrl.h
@@ -7,6 +7,9 @@
  *  License: GNU GPLv2 or v3
  */
 
+#define _GNU_SOURCE
+#include <fcntl.h>
+
 #ifndef _DDR_CTRL_H
 #define _DDR_CTRL_H
 
diff --git a/ffs.h b/ffs.h
index 2215080..c1f3444 100644
--- a/ffs.h
+++ b/ffs.h
@@ -28,6 +28,9 @@
 #include <endian.h>
 #endif
 
+#ifdef HAVE_SYS_REG_H
+#include <sys/reg.h>
+#endif
 
 #ifdef HAVE_FFS
 # define myffs(x) ffs(x)
diff --git a/fiemap.h b/fiemap.h
index df1ba95..31cde3b 100644
--- a/fiemap.h
+++ b/fiemap.h
@@ -29,5 +29,9 @@
 
 #endif	/* HAVE_LINUX_FS_H */
 
+#ifdef HAVE_SYS_REG_H
+#include <sys/reg.h>
+#endif
+
 #endif	/* _FIEMAPH */
 
diff --git a/fmt_no.h b/fmt_no.h
index cb0a81b..52ec236 100644
--- a/fmt_no.h
+++ b/fmt_no.h
@@ -1,4 +1,6 @@
 /** Decl for int to str conversion with highlighting */
+#define _GNU_SOURCE
+#include <fcntl.h>
 
 #ifndef _FMT_NO_H
 #define _FMT_NO_H
diff --git a/fstrim.h b/fstrim.h
index 7447061..b9cdcbb 100644
--- a/fstrim.h
+++ b/fstrim.h
@@ -1,3 +1,6 @@
+#define _GNU_SOURCE
+#include <fcntl.h>
+
 #ifndef _FSTRIM_H
 #define _FSTRIM_H
 
diff --git a/libddr_hash.c b/libddr_hash.c
index 7c8cdf8..cdbbd4d 100644
--- a/libddr_hash.c
+++ b/libddr_hash.c
@@ -33,6 +33,10 @@
 #include <unistd.h>
 #include <fcntl.h>
 
+#ifdef HAVE_SYS_REG_H
+#include <sys/reg.h>
+#endif
+
 #include <netinet/in.h>	/* For ntohl/htonl */
 #include <endian.h>
 
diff --git a/libddr_lzo.c b/libddr_lzo.c
index 8d3983e..8c83c04 100644
--- a/libddr_lzo.c
+++ b/libddr_lzo.c
@@ -26,6 +26,9 @@
 #include <errno.h>
 #include <netinet/in.h>
 #include <sys/stat.h>
+#ifdef HAVE_SYS_REG_H
+#include <sys/reg.h>
+#endif
 #include <signal.h>
 #include <lzo/lzo1x.h>
 #include <lzo/lzo1y.h>
diff --git a/libddr_null.c b/libddr_null.c
index 3f0f194..c379961 100644
--- a/libddr_null.c
+++ b/libddr_null.c
@@ -10,6 +10,9 @@
 #include "ddr_ctrl.h"
 #include <string.h>
 #include <stdlib.h>
+#ifdef HAVE_SYS_REG_H
+#include <sys/reg.h>
+#endif
 
 /* fwd decl */
 extern ddr_plugin_t ddr_plug;
diff --git a/sha512.h b/sha512.h
index 4d08043..f54d371 100644
--- a/sha512.h
+++ b/sha512.h
@@ -3,6 +3,10 @@
 
 #include "hash.h"
 
+#ifdef HAVE_SYS_REG_H
+#include <sys/reg.h>
+#endif
+
 void sha512_init(hash_t *ctx);
 void sha384_init(hash_t *ctx);
 void sha512_128(const uint8_t* msg, hash_t* ctx);
-- 
2.15.0