]> rtime.felk.cvut.cz Git - sojka/libev.git/commitdiff
*** empty log message ***
authorMarc Alexander Lehmann <libev@schmorp.de>
Thu, 3 Feb 2011 20:59:08 +0000 (20:59 +0000)
committerMarc Alexander Lehmann <libev@schmorp.de>
Thu, 3 Feb 2011 20:59:08 +0000 (20:59 +0000)
Changes
libev.m4

diff --git a/Changes b/Changes
index da55f1a8aba86ec6025100730af152c506ba92d8..c9b05c00b1e5a3a52cb9677bc6d940733e5111fb 100644 (file)
--- a/Changes
+++ b/Changes
@@ -5,6 +5,8 @@ TODO: ev_loop_wakeup
 TODO: windows handle caching, added/not removed in ev_select.c
        - do no rely on ceil() in ev_e?poll.c.
         - backport libev to HP-UX versions before 11 v3.
+        - configure did not detect nanosleep and clock_gettime properly when
+          they are available in the libc (as opposed to -lrt).
 
 4.03 Tue Jan 11 14:37:25 CET 2011
        - officially support polling files with all backends.
index 0930c0c0015d2798d973bddd69a803ed94cd82fe..e3f4c81b236d53a9f0ea2aa965a4264b2958bfcd 100644 (file)
--- a/libev.m4
+++ b/libev.m4
@@ -6,7 +6,7 @@ AC_CHECK_HEADERS(sys/inotify.h sys/epoll.h sys/event.h port.h poll.h sys/select.
  
 AC_CHECK_FUNCS(inotify_init epoll_ctl kqueue port_create poll select eventfd signalfd)
  
-AC_CHECK_FUNC(clock_gettime, [], [ 
+AC_CHECK_FUNCS(clock_gettime, [], [ 
    dnl on linux, try syscall wrapper first
    if test $(uname) = Linux; then
       AC_MSG_CHECKING(for clock_gettime syscall)
@@ -27,7 +27,7 @@ AC_CHECK_FUNC(clock_gettime, [], [
    fi
 ])
 
-AC_CHECK_FUNC(nanosleep, [], [ 
+AC_CHECK_FUNCS(nanosleep, [], [ 
    if test -z "$LIBEV_M4_AVOID_LIBRT"; then
       AC_CHECK_LIB(rt, nanosleep) 
       unset ac_cv_func_nanosleep