From 968aa53dd6d2c0831a9af01873441767c06b88d0 Mon Sep 17 00:00:00 2001 From: Thomas De Schampheleire Date: Wed, 1 Aug 2018 12:17:10 +0200 Subject: [PATCH] mksquashfs/unsquashfs: fix compilation with glibc 2.25+ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From glibc 2.25 release notes: https://sourceware.org/ml/libc-alpha/2017-02/msg00079.html "* The inclusion of by is deprecated. This means that in a future release, the macros “major”, “minor”, and “makedev” will only be available from ." See glibc bug https://sourceware.org/bugzilla/show_bug.cgi?id=19239 . --- squashfs-tools/mksquashfs.c | 1 + squashfs-tools/unsquashfs.c | 1 + 2 files changed, 2 insertions(+) diff --git a/squashfs-tools/mksquashfs.c b/squashfs-tools/mksquashfs.c index d696a51..8d57c3e 100644 --- a/squashfs-tools/mksquashfs.c +++ b/squashfs-tools/mksquashfs.c @@ -35,6 +35,7 @@ #include #include #include +#include #include #include #include diff --git a/squashfs-tools/unsquashfs.c b/squashfs-tools/unsquashfs.c index a57f85c..a492b27 100644 --- a/squashfs-tools/unsquashfs.c +++ b/squashfs-tools/unsquashfs.c @@ -33,6 +33,7 @@ #include "fnmatch_compat.h" #include +#include #include #include #include -- 2.21.0