blob: 0d217996826e12ce53cf34d8c9ead9567f3d2fcd [file] [log] [blame]
Patrick Williamsdb4c27e2022-08-05 08:10:29 -05001From a2f68263a1da5ad227bcb9cd8fa91b93c8b6c99f Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 25 Jul 2022 10:56:53 -0700
4Subject: [PATCH] libarchive: Do not include sys/mount.h when linux/fs.h is
5 present
6
7These headers are in conflict and only one is needed by
8archive_read_disk_posix.c therefore include linux/fs.h if it exists
9otherwise include sys/mount.h
10
11It also helps compiling with glibc 2.36
12where sys/mount.h conflicts with linux/mount.h see [1]
13
14[1] https://sourceware.org/glibc/wiki/Release/2.36
15
16Upstream-Status: Submitted [https://github.com/libarchive/libarchive/pull/1761]
17Signed-off-by: Khem Raj <raj.khem@gmail.com>
18---
19 libarchive/archive_read_disk_posix.c | 5 ++---
20 1 file changed, 2 insertions(+), 3 deletions(-)
21
22diff --git a/libarchive/archive_read_disk_posix.c b/libarchive/archive_read_disk_posix.c
23index 2b39e672..a96008db 100644
24--- a/libarchive/archive_read_disk_posix.c
25+++ b/libarchive/archive_read_disk_posix.c
26@@ -34,9 +34,6 @@ __FBSDID("$FreeBSD$");
27 #ifdef HAVE_SYS_PARAM_H
28 #include <sys/param.h>
29 #endif
30-#ifdef HAVE_SYS_MOUNT_H
31-#include <sys/mount.h>
32-#endif
33 #ifdef HAVE_SYS_STAT_H
34 #include <sys/stat.h>
35 #endif
36@@ -54,6 +51,8 @@ __FBSDID("$FreeBSD$");
37 #endif
38 #ifdef HAVE_LINUX_FS_H
39 #include <linux/fs.h>
40+#elif HAVE_SYS_MOUNT_H
41+#include <sys/mount.h>
42 #endif
43 /*
44 * Some Linux distributions have both linux/ext2_fs.h and ext2fs/ext2_fs.h.
45--
462.25.1
47