mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
fcf9c0b7fd
With their approval, the maintainer is changed from sanpei@yy.cs.keio.ac.jp to hikura@kaisei.org PR: 4325 Submitted by: hikura@kaisei.org
19 lines
468 B
Plaintext
19 lines
468 B
Plaintext
--- perl.h.ORIG Mon Apr 28 17:36:10 1997
|
|
+++ perl.h Fri May 23 11:56:49 1997
|
|
@@ -223,6 +223,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)
|