*** empty log message ***

This commit is contained in:
Marc Alexander Lehmann 2007-11-18 01:31:48 +00:00
parent da54bb9f5c
commit 3f8be03cc2
1 changed files with 4 additions and 2 deletions

View File

@ -7,8 +7,10 @@ AC_CHECK_HEADERS(sys/epoll.h sys/event.h sys/queue.h port.h)
AC_CHECK_FUNCS(epoll_ctl kqueue port_create)
AC_CHECK_FUNC(clock_gettime, [], [
AC_CHECK_LIB(rt, clock_gettime)
AC_CHECK_FUNCS(clock_gettime)
if test -z "$LIBEV_M4_AVOID_LIBRT"; then
AC_CHECK_LIB(rt, clock_gettime)
AC_CHECK_FUNCS(clock_gettime)
fi
])
AC_CHECK_LIB(m, ceil)