mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
291beb8efb
Get tkstep being optional Noticed by: maintainer (who sent me the e-mail including the diff)
22 lines
507 B
Plaintext
22 lines
507 B
Plaintext
--- imap-4.6.BETA/src/osdep/unix/os_bsi.h.orig Sat Oct 19 12:30:04 1996
|
|
+++ imap-4.6.BETA/src/osdep/unix/os_bsi.h Sun Feb 21 10:25:47 1999
|
|
@@ -37,7 +37,18 @@
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
+
|
|
+/*
|
|
+ * FreeBSD v3.x and onward whines about <sys/dir.h> being obsolete, so switch
|
|
+ * to POSIX semantics.
|
|
+ */
|
|
+#if __FreeBSD__ >= 3
|
|
+#include <dirent.h>
|
|
+#define direct dirent
|
|
+#else
|
|
#include <sys/dir.h>
|
|
+#endif
|
|
+
|
|
#include <fcntl.h>
|
|
#include <syslog.h>
|
|
#include <sys/file.h>
|