1 dnl find the tevent sources. This is meant to work both for
2 dnl standalone builds, and builds of packages using libtevent
6 if test x"$teventdir" = "x"; then
8 teventpaths="$srcdir $srcdir/../lib/tevent $srcdir/tevent $srcdir/../tevent"
9 for d in $teventpaths; do
10 if test -f "$d/tevent.c"; then
15 if test x"$teventdir" = "x"; then
16 AC_MSG_ERROR([cannot find libtevent source in $teventpaths])
24 AC_SUBST(TEVENT_CFLAGS)
27 TEVENT_CFLAGS="-I$teventdir"
29 TEVENT_OBJ="tevent.o tevent_debug.o tevent_util.o"
30 TEVENT_OBJ="$TEVENT_OBJ tevent_fd.o tevent_timed.o tevent_immediate.o tevent_signal.o"
31 TEVENT_OBJ="$TEVENT_OBJ tevent_req.o tevent_wakeup.o tevent_queue.o"
32 TEVENT_OBJ="$TEVENT_OBJ tevent_standard.o tevent_select.o"
33 TEVENT_OBJ="$TEVENT_OBJ tevent_poll.o"
35 AC_CHECK_HEADERS(sys/epoll.h)
36 AC_CHECK_FUNCS(epoll_create)
37 if test x"$ac_cv_header_sys_epoll_h" = x"yes" -a x"$ac_cv_func_epoll_create" = x"yes"; then
38 TEVENT_OBJ="$TEVENT_OBJ tevent_epoll.o"
39 AC_DEFINE(HAVE_EPOLL, 1, [Whether epoll available])
42 if test x"$VERSIONSCRIPT" != "x"; then
43 EXPORTSFILE=tevent.exports