aboutsummaryrefslogtreecommitdiff
path: root/devel/fam
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2005-12-05 14:16:22 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2005-12-05 14:16:22 +0000
commit9bed7b635bea66a890e5fb4f4065141153b4d16a (patch)
treea2ac9dbf63fb86051dfe25548a19e26980c131ad /devel/fam
parent61b60f8311a20de3df22c6dd10a7e24d9bda69d4 (diff)
downloadports-9bed7b635bea66a890e5fb4f4065141153b4d16a.tar.gz
ports-9bed7b635bea66a890e5fb4f4065141153b4d16a.zip
Notes
Diffstat (limited to 'devel/fam')
-rw-r--r--devel/fam/files/patch-fam-mntent_compat.c++12
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/fam/files/patch-fam-mntent_compat.c++ b/devel/fam/files/patch-fam-mntent_compat.c++
new file mode 100644
index 000000000000..2df1ba9280f0
--- /dev/null
+++ b/devel/fam/files/patch-fam-mntent_compat.c++
@@ -0,0 +1,12 @@
+--- fam/mntent_compat.c++.orig Sun Dec 4 22:43:02 2005
++++ fam/mntent_compat.c++ Sun Dec 4 22:43:49 2005
+@@ -98,7 +98,9 @@ flags2opts (int flags)
+ if (flags & MNT_SYNCHRONOUS) res = catopt(res, "sync");
+ if (flags & MNT_NOEXEC) res = catopt(res, "noexec");
+ if (flags & MNT_NOSUID) res = catopt(res, "nosuid");
++#ifdef MNT_NODEV
+ if (flags & MNT_NODEV) res = catopt(res, "nodev");
++#endif
+ if (flags & MNT_UNION) res = catopt(res, "union");
+ if (flags & MNT_ASYNC) res = catopt(res, "async");
+ if (flags & MNT_NOATIME) res = catopt(res, "noatime");