diff options
Diffstat (limited to 'mail/panda-imap/files/patch-src_osdep_unix_os__bsi.h')
-rw-r--r-- | mail/panda-imap/files/patch-src_osdep_unix_os__bsi.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mail/panda-imap/files/patch-src_osdep_unix_os__bsi.h b/mail/panda-imap/files/patch-src_osdep_unix_os__bsi.h new file mode 100644 index 000000000000..ca6caf9d5f3c --- /dev/null +++ b/mail/panda-imap/files/patch-src_osdep_unix_os__bsi.h @@ -0,0 +1,21 @@ +--- 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> |