aboutsummaryrefslogtreecommitdiffstats
path: root/main/squashfs-tools/fix-compat.patch
blob: 2ecb17176f18b285b88d8442d346eedd1739176d (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
--- squashfs4.2.orig/squashfs-tools/mksquashfs.c
+++ squashfs4.2/squashfs-tools/mksquashfs.c
@@ -60,6 +60,10 @@
 #include <sys/sysinfo.h>
 #endif
 
+#if !defined(FNM_EXTMATCH)
+#define FNM_EXTMATCH 0
+#endif
+
 #ifdef SQUASHFS_TRACE
 #define TRACE(s, args...) \
 		do { \
--- squashfs4.2.orig/squashfs-tools/pseudo.c
+++ squashfs4.2/squashfs-tools/pseudo.c
@@ -32,6 +32,7 @@
 #include <stdlib.h>
 #include <sys/types.h>
 #include <sys/wait.h>
+#include <sys/stat.h>
 
 #include "pseudo.h"
 
--- squashfs4.2.orig/squashfs-tools/unsquashfs.c
+++ squashfs4.2/squashfs-tools/unsquashfs.c
@@ -32,6 +32,10 @@
 #include <sys/sysinfo.h>
 #include <sys/types.h>
 
+#ifndef FNM_EXTMATCH
+#define FNM_EXTMATCH 0
+#endif
+
 struct cache *fragment_cache, *data_cache;
 struct queue *to_reader, *to_deflate, *to_writer, *from_writer;
 pthread_t *thread, *deflator_thread;