libev/libev.m4

20 lines
485 B
Plaintext
Raw Normal View History

2007-11-10 05:17:18 +00:00
dnl this file is part of libev, do not make local modifications
dnl http://software.schmorp.de/pkg/libev
dnl libev support
AC_CHECK_HEADERS(sys/inotify.h sys/epoll.h sys/event.h sys/queue.h port.h poll.h sys/select.h)
2007-11-10 05:17:18 +00:00
AC_CHECK_FUNCS(inotify_init epoll_ctl kqueue port_create poll select)
2007-11-10 05:17:18 +00:00
AC_CHECK_FUNC(clock_gettime, [], [
2007-11-18 01:31:48 +00:00
if test -z "$LIBEV_M4_AVOID_LIBRT"; then
AC_CHECK_LIB(rt, clock_gettime)
AC_CHECK_FUNCS(clock_gettime)
2007-11-18 01:31:48 +00:00
fi
2007-11-10 05:17:18 +00:00
])
2007-11-16 01:43:52 +00:00
AC_CHECK_LIB(m, ceil)
2007-11-10 15:15:49 +00:00
2007-11-10 05:17:18 +00:00