forked from Lainports/freebsd-ports
at UW. Improvements include TLS and SSL support fully integrated into the code base (requires OpenSSL), support for remote address books, improved rules-based filtering, and new filter options. * Bugs fixed include longer folder names, temp file cleanup, mail sorted by filters more accurately, et al. * Re-generate almost all of the patches to clean out more of the fuzz.
17 lines
410 B
Text
17 lines
410 B
Text
*** imap/src/osdep/unix/os_bsi.h.orig Tue Feb 6 14:29:32 2001
|
|
--- imap/src/osdep/unix/os_bsi.h Fri Sep 28 00:19:45 2001
|
|
***************
|
|
*** 22,28 ****
|
|
--- 22,33 ----
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
+ #ifdef __FreeBSD__
|
|
+ #include <dirent.h>
|
|
+ #define direct dirent
|
|
+ #else
|
|
#include <sys/dir.h>
|
|
+ #endif
|
|
#include <fcntl.h>
|
|
#include <syslog.h>
|
|
#include <sys/file.h>
|