libev/libev.m4

18 lines
368 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
2007-11-16 01:43:52 +00:00
AC_CHECK_HEADERS(sys/epoll.h sys/event.h sys/queue.h port.h)
2007-11-10 05:17:18 +00:00
2007-11-16 01:43:52 +00:00
AC_CHECK_FUNCS(epoll_ctl kqueue port_create)
2007-11-10 05:17:18 +00:00
AC_CHECK_FUNC(clock_gettime, [], [
AC_CHECK_LIB(rt, clock_gettime)
2007-11-10 15:15:49 +00:00
AC_CHECK_FUNCS(clock_gettime)
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