From f6aa3fc4625994405f4420586126aa3d31c19f75 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 24 Jan 2010 12:31:55 +0000 Subject: disable poll on aix --- Changes | 3 +++ ev.c | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/Changes b/Changes index e764cd8..962eab6 100644 --- a/Changes +++ b/Changes @@ -4,6 +4,9 @@ Revision history for libev, a high-performance and full-featured event loop. - remove dependency on sys/queue.h on freebsd (patch by Vanilla Hsu). - configure now prepends -O3, not appends it, so one can still override it. + - disable poll backend on AIX, the poll header spams the namespace + and it's not worth working around dead platforms (reported + and analyzed by Aivars Kalvans). 3.9 Thu Dec 31 07:59:59 CET 2009 - signalfd is no longer used by default and has to be requested diff --git a/ev.c b/ev.c index f1bcf58..553dc55 100644 --- a/ev.c +++ b/ev.c @@ -346,6 +346,12 @@ extern "C" { /* this block fixes any misconfiguration where we know we run into trouble otherwise */ +#ifdef _AIX +/* AIX has a completely broken poll.h header */ +# undef EV_USE_POLL +# define EV_USE_POLL 0 +#endif + #ifndef CLOCK_MONOTONIC # undef EV_USE_MONOTONIC # define EV_USE_MONOTONIC 0 -- cgit v1.2.3