diff options
author | root <root> | 2010-10-22 11:21:52 +0000 |
---|---|---|
committer | root <root> | 2010-10-22 11:21:52 +0000 |
commit | 955354ad4b62d43d5089fe785ba704f715c0e3d0 (patch) | |
tree | 610c069e96f615126ec416c8d29ac0e5bb114761 | |
parent | 31ab8232f527412561047203a977c9e8b8d6c539 (diff) |
*** empty log message ***
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | ev.c | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -49,6 +49,7 @@ TODO: EVRUN_XXX? - improve compatibility to older C++ compilers. - (experimental) ev_run/ev_default_loop/ev_break/ev_loop_new have now default arguments when compiled as C++. + - enable automake dependency tracking. 3.9 Thu Dec 31 07:59:59 CET 2009 - signalfd is no longer used by default and has to be requested @@ -384,7 +384,6 @@ EV_CPP(extern "C" {) #endif #if EV_USE_INOTIFY -# include <sys/utsname.h> # include <sys/statfs.h> # include <sys/inotify.h> /* some very old inotify.h headers don't have IN_DONT_FOLLOW */ @@ -525,6 +524,10 @@ static EV_ATOMIC_T have_monotonic; /* did clock_gettime (CLOCK_MONOTONIC) work? /*****************************************************************************/ +#ifdef __linux +# include <sys/utsname.h> +#endif + static unsigned int noinline ev_linux_version (void) { |