mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
df8ac976a6
2) Do not convert 8bit to binary for large text messages with many 8bit chars, it cause large Russian mail to be always BASE64 encoded.
18 lines
444 B
Plaintext
18 lines
444 B
Plaintext
*** imap/ANSI/c-client/os_bsi.h.bak Wed Feb 7 12:01:07 1996
|
|
--- imap/ANSI/c-client/os_bsi.h Sun Jul 20 01:47:23 1997
|
|
***************
|
|
*** 36,42 ****
|
|
--- 36,47 ----
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
+ #ifdef __FreeBSD__
|
|
+ #include <dirent.h>
|
|
+ #define direct dirent
|
|
+ #else
|
|
#include <sys/dir.h>
|
|
+ #endif
|
|
#include <sys/uio.h> /* needed for writev() prototypes */
|
|
#include <fcntl.h>
|
|
#include <syslog.h>
|