X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/adns/blobdiff_plain/02b47faadfe03c3b302dadb78422e14648f07b50..16cf5367e3a455f322328315f3c13ed23d68b690:/client/adnstest.c?ds=sidebyside diff --git a/client/adnstest.c b/client/adnstest.c index cbb896a..88875d2 100644 --- a/client/adnstest.c +++ b/client/adnstest.c @@ -27,13 +27,24 @@ #include #include #include -#include + +#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));