ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/libev.m4
Revision: 1.8
Committed: Sat Dec 22 05:48:04 2007 UTC (16 years, 4 months ago) by root
Branch: MAIN
Changes since 1.7: +8 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 dnl this file is part of libev, do not make local modifications
2 dnl http://software.schmorp.de/pkg/libev
3
4 dnl libev support
5 AC_CHECK_HEADERS(sys/inotify.h sys/epoll.h sys/event.h sys/queue.h port.h poll.h sys/select.h)
6
7 AC_CHECK_FUNCS(inotify_init epoll_ctl kqueue port_create poll select)
8
9 AC_CHECK_FUNC(clock_gettime, [], [
10 if test -z "$LIBEV_M4_AVOID_LIBRT"; then
11 AC_CHECK_LIB(rt, clock_gettime)
12 unset ac_cv_func_clock_gettime
13 AC_CHECK_FUNCS(clock_gettime)
14 fi
15 ])
16
17 AC_CHECK_FUNC(nanonsleep, [], [
18 if test -z "$LIBEV_M4_AVOID_LIBRT"; then
19 AC_CHECK_LIB(rt, nanonsleep)
20 unset ac_cv_func_nanonsleep
21 AC_CHECK_FUNCS(nanonsleep)
22 fi
23 ])
24
25 AC_CHECK_LIB(m, ceil)
26
27
28