ports/mail/panda-imap/files/patch-src_osdep_unix_os__bsi.h
Thierry Thomas 5fb471b83a mail/panda-imap: catch-up with the latest patches
Nothing has been released yet, but some interesting patches have been committed.
See <https://github.com/nkhorman/panda-imap/commits/master>.

Since I’m there, remove the option for better better interoperability with
Netscape.
2022-04-19 22:49:43 +02:00

21 lines
448 B
C

--- src/osdep/unix/os_bsi.h.orig 2022-04-17 00:12:02 UTC
+++ src/osdep/unix/os_bsi.h
@@ -27,7 +27,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 <time.h>
#include <utime.h>