From ce1d3af4da4ab3752f20b86aee0f71ff23876d88 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 31 May 2008 03:13:26 +0000 Subject: *** empty log message *** --- ev.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'ev.c') diff --git a/ev.c b/ev.c index 6c70810..e75e545 100644 --- a/ev.c +++ b/ev.c @@ -166,7 +166,11 @@ extern "C" { /* this block tries to deduce configuration from header-defined symbols and defaults */ #ifndef EV_USE_MONOTONIC -# define EV_USE_MONOTONIC 0 +# if defined (_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0 +# define EV_USE_MONOTONIC 1 +# else +# define EV_USE_MONOTONIC 0 +# endif #endif #ifndef EV_USE_REALTIME @@ -174,7 +178,11 @@ extern "C" { #endif #ifndef EV_USE_NANOSLEEP -# define EV_USE_NANOSLEEP 0 +# if _POSIX_C_SOURCE >= 199309L +# define EV_USE_NANOSLEEP 1 +# else +# define EV_USE_NANOSLEEP 0 +# endif #endif #ifndef EV_USE_SELECT -- cgit v1.2.3