Compile without HAVE_POLL ?
authorian <ian>
Wed, 14 Jul 1999 22:59:34 +0000 (22:59 +0000)
committerian <ian>
Wed, 14 Jul 1999 22:59:34 +0000 (22:59 +0000)
acconfig.h
client/adnstest.c

index 16672a6..ae59c59 100644 (file)
@@ -39,6 +39,7 @@
 #ifdef HAVE_POLL
 #include <sys/poll.h>
 #else
+/* kludge it up */
 struct pollfd { int fd; short events; short revents; };
 #define POLLIN  1
 #define POLLPRI 2
index cbb896a..88875d2 100644 (file)
 #include <stdlib.h>
 #include <string.h>
 #include <errno.h>
-#include <sys/poll.h>
+
+#include "adns.h"
+
+#include "config.h"
 
 #ifndef OUTPUTSTREAM
 # define OUTPUTSTREAM stdout
 #endif
 
-#include "adns.h"
+#ifndef HAVE_POLL
+#undef poll
+int poll(struct pollfd *ufds, int nfds, int timeout) {
+  fputs("poll(2) not supported on this system\n",stderr);
+  exit(3);
+}
+#define adns_beforepoll(a,b,c,d,e) 0
+#define adns_afterpoll(a,b,c,d) 0
+#endif
 
 static void failure_status(const char *what, adns_status st) {
   fprintf(stderr,"adns failure: %s: %s\n",what,adns_strerror(st));