1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/mail/cclient-maildir/files/patch-aa
Kelly Yancey c64128b31a New port: cclient built with third-party maildir support. Cclient is used
by UW's pine and imapd software to access mailboxes. This port complements
the existing cclient port by building a version that includes support for
qmail's maildir mailbox format.

PR:		19691
2000-08-14 07:49:03 +00:00

22 lines
479 B
Plaintext

--- src/osdep/unix/os_bsi.h.orig Sat Oct 19 20:30:04 1996
+++ src/osdep/unix/os_bsi.h Sun May 24 10:46:33 1998
@@ -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>