From c60a90b73971706f525fc7e3289291636f50caa5 Mon Sep 17 00:00:00 2001 From: Giulio Benetti Date: Thu, 6 Apr 2023 13:37:57 +0200 Subject: Fix MS_LAZYTIME not defined on uclibc and move all MS_* and UMOUNT_* (#753) as well as inclusion to new fuse_mount_compat.h file. Signed-off-by: Giulio Benetti --- util/fusermount.c | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) (limited to 'util/fusermount.c') diff --git a/util/fusermount.c b/util/fusermount.c index 7a6bc24..850cf6b 100644 --- a/util/fusermount.c +++ b/util/fusermount.c @@ -24,7 +24,9 @@ #include #include #include -#include + +#include "fuse_mount_compat.h" + #include #include #include @@ -36,26 +38,6 @@ #define FUSE_DEV "/dev/fuse" -#ifndef MS_DIRSYNC -#define MS_DIRSYNC 128 -#endif -#ifndef MS_REC -#define MS_REC 16384 -#endif -#ifndef MS_PRIVATE -#define MS_PRIVATE (1<<18) -#endif - -#ifndef UMOUNT_DETACH -#define UMOUNT_DETACH 0x00000002 /* Just detach from the tree */ -#endif -#ifndef UMOUNT_NOFOLLOW -#define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */ -#endif -#ifndef UMOUNT_UNUSED -#define UMOUNT_UNUSED 0x80000000 /* Flag guaranteed to be unused */ -#endif - static const char *progname; static int user_allow_other = 0; -- cgit v1.2.3