mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
62e0e80351
PR: ports/8201 Obsoletes: ports/7849 Submitted by: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp> Modified by: Japanese Ports Team
19 lines
468 B
Plaintext
19 lines
468 B
Plaintext
--- perl.h.ORIG Thu Jul 30 17:04:42 1998
|
|
+++ perl.h Thu Jul 30 17:06:34 1998
|
|
@@ -361,6 +361,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)
|