aboutsummaryrefslogtreecommitdiffstats
path: root/tools/squashfs4/patches/100-portability.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-05-17 00:57:52 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-05-17 00:57:52 +0000
commite60a53c833c33f1be07664acd9a04fa7c2e36c53 (patch)
tree0bf2a188a93217e3a1076bb089b84ec44fafd191 /tools/squashfs4/patches/100-portability.patch
parentefa8655f20c29df2755e4e01520e3c86a450c28c (diff)
downloadmaster-187ad058-e60a53c833c33f1be07664acd9a04fa7c2e36c53.tar.gz
master-187ad058-e60a53c833c33f1be07664acd9a04fa7c2e36c53.tar.bz2
master-187ad058-e60a53c833c33f1be07664acd9a04fa7c2e36c53.zip
squashfs4: add lzma support (kernel support still missing)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15884 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/squashfs4/patches/100-portability.patch')
-rw-r--r--tools/squashfs4/patches/100-portability.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/squashfs4/patches/100-portability.patch b/tools/squashfs4/patches/100-portability.patch
new file mode 100644
index 0000000000..4318c0ca60
--- /dev/null
+++ b/tools/squashfs4/patches/100-portability.patch
@@ -0,0 +1,24 @@
+--- a/squashfs-tools/global.h
++++ b/squashfs-tools/global.h
+@@ -44,4 +44,8 @@ typedef long long squashfs_fragment_inde
+ typedef squashfs_inode_t squashfs_inode;
+ typedef squashfs_block_t squashfs_block;
+
++#ifndef FNM_EXTMATCH
++#define FNM_EXTMATCH 0
++#endif
++
+ #endif
+--- a/squashfs-tools/unsquashfs.h
++++ b/squashfs-tools/unsquashfs.h
+@@ -49,8 +49,10 @@
+ #define __BYTE_ORDER BYTE_ORDER
+ #define __BIG_ENDIAN BIG_ENDIAN
+ #define __LITTLE_ENDIAN LITTLE_ENDIAN
++#include <sys/sysctl.h>
+ #else
+ #include <endian.h>
++#include <sys/sysinfo.h>
+ #endif
+
+ #include "squashfs_fs.h"