diff options
author | root <root> | 2013-02-18 03:20:28 +0000 |
---|---|---|
committer | root <root> | 2013-02-18 03:20:28 +0000 |
commit | f6d4687f22ce23e0008df90473baa6657677fcc2 (patch) | |
tree | df47b1736282d33319563fc13e5c9be9e5d5019f /ev.c | |
parent | f703e97b4a4e2c7010a338e5ac289acaf18bb536 (diff) |
http://laurentdesegur.wordpress.com/2011/10/07/building-libev-and-libeio-with-android-ndk/
Diffstat (limited to 'ev.c')
-rw-r--r-- | ev.c | 22 |
1 files changed, 16 insertions, 6 deletions
@@ -359,6 +359,22 @@ # define EV_HEAP_CACHE_AT EV_FEATURE_DATA #endif +#ifdef ANDROID +/* supposedly, android doesn't typedef fd_mask */ +# undef EV_USE_SELECT +# define EV_USE_SELECT 0 +/* supposedly, we need to include syscall.h, not sys/syscall.h, so just disable */ +# undef EV_USE_CLOCK_SYSCALL +# define EV_USE_CLOCK_SYSCALL 0 +#endif + +/* aix's poll.h seems to cause lots of trouble */ +#ifdef _AIX +/* AIX has a completely broken poll.h header */ +# undef EV_USE_POLL +# define EV_USE_POLL 0 +#endif + /* on linux, we can use a (slow) syscall to avoid a dependency on pthread, */ /* which makes programs even slower. might work on other unices, too. */ #if EV_USE_CLOCK_SYSCALL @@ -375,12 +391,6 @@ /* 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 |