blob: b491d966dcbabf8d9ba1dbb1bcb6ee672bd0b019 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$NetBSD: patch-ac,v 1.2 2000/07/05 19:25:50 hubertf Exp $
--- perl.h.orig Sun Mar 19 06:45:33 2000
+++ perl.h Tue Jul 4 04:18:16 2000
@@ -486,6 +486,15 @@
# include <sys/param.h>
#endif
+/* needed for IAMSUID case for 4.4BSD systems
+ * XXX there should probably be a Configure variable
+ */
+
+#ifdef I_SYS_PARAM
+#if (defined (BSD) && (BSD >= 199306))
+# include <sys/mount.h>
+#endif /* !BSD */
+#endif /* !I_SYS_PARAM */
/* Use all the "standard" definitions? */
#if defined(STANDARD_C) && defined(I_STDLIB)
|