aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--daemon.c1
-rw-r--r--options.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 62159f1b..fa31b809 100644
--- a/NEWS
+++ b/NEWS
@@ -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.
diff --git a/daemon.c b/daemon.c
index 2995f1ef..622b01e7 100644
--- a/daemon.c
+++ b/daemon.c
@@ -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>
diff --git a/options.c b/options.c
index feb6ea7d..0c7d4434 100644
--- a/options.c
+++ b/options.c
@@ -6,6 +6,7 @@
#include <config.h>
+#include <stdio.h>
#include <pwd.h>
#include <string.h>
#if defined(STDC_HEADERS)