aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--sink.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 85cc29e2..ab031a55 100644
--- a/NEWS
+++ b/NEWS
@@ -195,6 +195,8 @@ fetchmail 6.3.0 (not yet released officially):
* Fixes to --with-hesiod option. Sunil Shetye. (MA)
* Delete oversized messages with the news --limitflush option. Debian
Bug#212240. Sunil Shetye. (MA)
+* Fix MacOS X compilation failures in sink.c (ru_*time has incomplete type).
+ Berlios Bug #4725. Matthias Andree.
# INTERNAL CHANGES
* Switched to automake. Matthias Andree.
diff --git a/sink.c b/sink.c
index 5483ca04..31da7dcd 100644
--- a/sink.c
+++ b/sink.c
@@ -32,14 +32,14 @@
#include <ctype.h>
#include <langinfo.h>
+#include "fetchmail.h"
+
/* for W* macros after pclose() */
#define _USE_BSD
#include <sys/types.h>
#include <sys/resource.h>
#include <sys/wait.h>
-
-#include "fetchmail.h"
#include "socket.h"
#include "smtp.h"
#include "i18n.h"