sys-fs/squashfs-tools: fix building w/newer glibc
authorMike Frysinger <vapier@gentoo.org>
Wed, 13 Apr 2016 18:29:58 +0000 (14:29 -0400)
committerMike Frysinger <vapier@gentoo.org>
Wed, 13 Apr 2016 18:40:40 +0000 (14:40 -0400)
sys-fs/squashfs-tools/files/squashfs-tools-4.3-sysmacros.patch [new file with mode: 0644]
sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild

diff --git a/sys-fs/squashfs-tools/files/squashfs-tools-4.3-sysmacros.patch b/sys-fs/squashfs-tools/files/squashfs-tools-4.3-sysmacros.patch
new file mode 100644 (file)
index 0000000..1430b1a
--- /dev/null
@@ -0,0 +1,25 @@
+sys/types.h might not always include sys/sysmacros.h for major/minor/makedev
+
+--- a/squashfs-tools/mksquashfs.c
++++ b/squashfs-tools/mksquashfs.c
+@@ -59,6 +59,7 @@
+ #else
+ #include <endian.h>
+ #include <sys/sysinfo.h>
++#include <sys/sysmacros.h>
+ #endif
+ #include "squashfs_fs.h"
+--- a/squashfs-tools/unsquashfs.c
++++ b/squashfs-tools/unsquashfs.c
+@@ -38,6 +38,10 @@
+ #include <limits.h>
+ #include <ctype.h>
++#ifdef linux
++#include <sys/sysmacros.h>
++#endif
++
+ struct cache *fragment_cache, *data_cache;
+ struct queue *to_reader, *to_inflate, *to_writer, *from_writer;
+ pthread_t *thread, *inflator_thread;
index ae89fac4a2940555acaab7b5b598eb2747f09bd4..fb5398a03ff40348096e80b6f7c7cce053a105b8 100644 (file)
@@ -27,6 +27,10 @@ DEPEND="${RDEPEND}"
 
 S="${WORKDIR}/squashfs${PV}/${PN}"
 
+src_prepare() {
+       epatch "${FILESDIR}"/${P}-sysmacros.patch
+}
+
 use10() { usex $1 1 2 ; }
 
 src_configure() {