From 061d1a51097c3c025ff46173f10aa135f9a610d4 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 22 Mar 2018 14:05:17 +0100 Subject: libmount: include sys/mount.h only if necessary Addresses: https://github.com/systemd/systemd/issues/8507 Signed-off-by: Karel Zak --- libmount/src/libmount.h.in | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'libmount/src') diff --git a/libmount/src/libmount.h.in b/libmount/src/libmount.h.in index 8f323fcbf..11fd759fa 100644 --- a/libmount/src/libmount.h.in +++ b/libmount/src/libmount.h.in @@ -28,7 +28,14 @@ extern "C" { #include #include #include -#include + +/* Make sure libc MS_* definitions are used by default. Note that MS_* flags + * may be already defined by linux/fs.h or another file -- in this case we + * don't want to include sys/mount.h at all to avoid collisions. + */ +#ifndef MS_RDONLY +# include +#endif #define LIBMOUNT_VERSION "@LIBMOUNT_VERSION@" #define LIBMOUNT_MAJOR_VERSION @LIBMOUNT_MAJOR_VERSION@ -- cgit v1.2.3-55-g7522