summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/OS/os.h-Darwin5
-rw-r--r--src/src/exim.h4
-rw-r--r--src/src/spam.c9
3 files changed, 15 insertions, 3 deletions
diff --git a/src/OS/os.h-Darwin b/src/OS/os.h-Darwin
index 3a716376d..8efbc8562 100644
--- a/src/OS/os.h-Darwin
+++ b/src/OS/os.h-Darwin
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/OS/os.h-Darwin,v 1.1 2004/10/06 15:07:39 ph10 Exp $ */
+/* $Cambridge: exim/src/OS/os.h-Darwin,v 1.2 2005/05/10 22:39:20 tom Exp $ */
/* Exim: OS-specific C header file for Darwin (Mac OS X) */
@@ -9,6 +9,9 @@
#define PAM_H_IN_PAM
#define SIOCGIFCONF_GIVES_ADDR
+/* OSX 10.2 does not have poll.h, 10.3 does emulate it badly. */
+#define NO_POLL_H
+
#define F_FREESP O_TRUNC
typedef struct flock flock_t;
diff --git a/src/src/exim.h b/src/src/exim.h
index 9bc15cecb..bfe4819a2 100644
--- a/src/src/exim.h
+++ b/src/src/exim.h
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/exim.h,v 1.12 2005/05/10 10:19:11 ph10 Exp $ */
+/* $Cambridge: exim/src/src/exim.h,v 1.13 2005/05/10 22:39:20 tom Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -92,7 +92,9 @@ making unique names. */
#include <sys/file.h>
#include <dirent.h>
#include <netdb.h>
+#ifndef NO_POLL_H
#include <poll.h>
+#endif
#include <pwd.h>
#include <grp.h>
#include <syslog.h>
diff --git a/src/src/spam.c b/src/src/spam.c
index 0f6ad1434..3c70f6d99 100644
--- a/src/src/spam.c
+++ b/src/src/spam.c
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/spam.c,v 1.5 2005/04/27 10:00:18 ph10 Exp $ */
+/* $Cambridge: exim/src/src/spam.c,v 1.6 2005/05/10 22:39:20 tom Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -40,7 +40,9 @@ int spam(uschar **listptr) {
time_t start;
size_t read, wrote;
struct sockaddr_un server;
+#ifndef NO_POLL_H
struct pollfd pollfd;
+#endif
/* find the username from the option list */
if ((user_name = string_nextinlist(&list, &sep,
@@ -213,15 +215,19 @@ int spam(uschar **listptr) {
* and we poll the desciptor to make sure that we can write without
* blocking. Short writes are gracefully handled and if the whole
* trasaction takes too long it is aborted.
+ * Note: poll() is not supported in OSX 10.2.
*/
+#ifndef NO_POLL_H
pollfd.fd = spamd_sock;
pollfd.events = POLLOUT;
+#endif
fcntl(spamd_sock, F_SETFL, O_NONBLOCK);
do {
read = fread(spamd_buffer,1,sizeof(spamd_buffer),mbox_file);
if (read > 0) {
offset = 0;
again:
+#ifndef NO_POLL_H
result = poll(&pollfd, 1, 1000);
if (result == -1 && errno == EINTR)
continue;
@@ -239,6 +245,7 @@ again:
fclose(mbox_file);
return DEFER;
}
+#endif
wrote = send(spamd_sock,spamd_buffer + offset,read - offset,0);
if (offset + wrote != read) {
offset += wrote;