| Revision: | 1.5 |
| Committed: | Sun Nov 18 02:19:10 2007 UTC (18 years, 3 months ago) by root |
| Branch: | MAIN |
| CVS Tags: | rel-1_4, rel-1_1, rel-1_3, rel-1_2 |
| Changes since 1.4: | +2 -2 lines |
| Log Message: | *** empty log message *** |
| # | 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/epoll.h sys/event.h sys/queue.h port.h poll.h sys/select.h) |
| 6 | |
| 7 | AC_CHECK_FUNCS(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 | AC_CHECK_FUNCS(clock_gettime) |
| 13 | fi |
| 14 | ]) |
| 15 | |
| 16 | AC_CHECK_LIB(m, ceil) |
| 17 | |
| 18 | |
| 19 |