diff options
author | root <root> | 2010-01-24 12:31:55 +0000 |
---|---|---|
committer | root <root> | 2010-01-24 12:31:55 +0000 |
commit | f6aa3fc4625994405f4420586126aa3d31c19f75 (patch) | |
tree | d47981d506a7568b3b6603c066a1a3d928c5a729 /ev.c | |
parent | 7001ea97ebc6484e1250f56965680472d4f14ce6 (diff) |
disable poll on aix
Diffstat (limited to 'ev.c')
-rw-r--r-- | ev.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |