diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 03:56:01 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 03:56:01 +0000 |
commit | 995f32756f7c222468bb3527ae6b9f340fe333ea (patch) | |
tree | ef71dcf3fd4734e6b82694657003b543068e34c4 | |
parent | 40082c5df46235fd0252d3b46621b239f68ad0bb (diff) | |
download | fetchmail-995f32756f7c222468bb3527ae6b9f340fe333ea.tar.gz fetchmail-995f32756f7c222468bb3527ae6b9f340fe333ea.tar.bz2 fetchmail-995f32756f7c222468bb3527ae6b9f340fe333ea.zip |
Solaris 2.5 and FreeBSD 2.2.
svn path=/trunk/; revision=501
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | daemon.c | 1 | ||||
-rw-r--r-- | options.c | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -3,6 +3,7 @@ pl 1.9.10 (): * Better error messages on SMTP failure. * Accept Resent-From & Apparently-From a la RFC822. +* Include file fixes for Solaris 2.5 and FreeBSD 2.2. pl 1.9.8 (Wed Nov 6 16:40:34 EST 1996): * Don't append spurious NUL to the headers, qmail actually notices it. @@ -12,6 +12,7 @@ #include <sys/stat.h> #include <sys/file.h> #include <sys/wait.h> +#include <sys/fcntl.h> /* Solaris 2.5 requires this */ #if defined(HAVE_UNISTD_H) #include <unistd.h> @@ -6,6 +6,7 @@ #include <config.h> +#include <stdio.h> #include <pwd.h> #include <string.h> #if defined(STDC_HEADERS) |