projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e6df67c
)
Fix FTBFS on kfreebsd (#581)
author
Laurent Bigonville
<bigon@users.noreply.github.com>
Sun, 17 Jan 2021 10:49:07 +0000
(11:49 +0100)
committer
GitHub
<noreply@github.com>
Sun, 17 Jan 2021 10:49:07 +0000
(10:49 +0000)
kfreebsd is a FreeBSD kernel and a GNU libc
The only macro defined in that case is __FreeBSD_kernel__
Fix #580
lib/mount_util.c
patch
|
blob
|
history
diff --git
a/lib/mount_util.c
b/lib/mount_util.c
index f1d23255bda54997c5dfeb6590b0f369ce3aa1f4..35e994838472301a32f8c20af2c7cfba31a2b6ad 100644
(file)
--- a/
lib/mount_util.c
+++ b/
lib/mount_util.c
@@
-30,7
+30,7
@@
#include <sys/mount.h>
#include <sys/param.h>
-#if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
+#if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
|| defined(__FreeBSD_kernel__)
#define umount2(mnt, flags) unmount(mnt, ((flags) == 2) ? MNT_FORCE : 0)
#endif