ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/libev.m4
Revision: 1.6
Committed: Wed Nov 28 11:15:55 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-1_5
Changes since 1.5: +2 -2 lines
Log Message:
experimental, and likely broken, inotify support

File Contents

# User Rev Content
1 root 1.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 root 1.6 AC_CHECK_HEADERS(sys/inotify.h sys/epoll.h sys/event.h sys/queue.h port.h poll.h sys/select.h)
6 root 1.1
7 root 1.6 AC_CHECK_FUNCS(inotify_init epoll_ctl kqueue port_create poll select)
8 root 1.1
9     AC_CHECK_FUNC(clock_gettime, [], [
10 root 1.3 if test -z "$LIBEV_M4_AVOID_LIBRT"; then
11 root 1.5 AC_CHECK_LIB(rt, clock_gettime)
12     AC_CHECK_FUNCS(clock_gettime)
13 root 1.3 fi
14 root 1.1 ])
15    
16 root 1.2 AC_CHECK_LIB(m, ceil)
17 root 1.1
18    
19