Fix poll() being unavailable on Mac OSX 10.2
authorTom Kistner <tom@duncanthrax.net>
Tue, 10 May 2005 22:39:20 +0000 (22:39 +0000)
committerTom Kistner <tom@duncanthrax.net>
Tue, 10 May 2005 22:39:20 +0000 (22:39 +0000)
src/OS/os.h-Darwin
src/src/exim.h
src/src/spam.c

index 3a716376de8fa5726423fd4066ce3cf441357291..8efbc8562033dbfa75a4c2bef5b73f2510b99461 100644 (file)
@@ -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;
 
index 9bc15cecb027046ca1bf76c3d25ff94ffcb63f3d..bfe4819a2d84a006c1fc19176265894c80413a95 100644 (file)
@@ -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>
index 0f6ad1434d8c22448399eadbd17960d37026a1fa..3c70f6d99a0720f057d92f81664fb6c212dd4239 100644 (file)
@@ -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;