diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-12-16 19:57:09 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-12-17 13:31:29 +0100 |
commit | 46eda790905e0ca70d9ecd2822578dbfde456e63 (patch) | |
tree | 142d4b85c91416c02b107ed41ec3232697b4c06e /lib/tevent/libtevent.m4 | |
parent | 504f8816e3058b9358a18ef42e442753fe2657ba (diff) | |
download | samba-46eda790905e0ca70d9ecd2822578dbfde456e63.tar.gz samba-46eda790905e0ca70d9ecd2822578dbfde456e63.tar.bz2 samba-46eda790905e0ca70d9ecd2822578dbfde456e63.zip |
s4:lib/tevent: add lib/events/ compat and let things compile
metze
Diffstat (limited to 'lib/tevent/libtevent.m4')
-rw-r--r-- | lib/tevent/libtevent.m4 | 48 |
1 files changed, 25 insertions, 23 deletions
diff --git a/lib/tevent/libtevent.m4 b/lib/tevent/libtevent.m4 index ed76b03d4f..30105d9bef 100644 --- a/lib/tevent/libtevent.m4 +++ b/lib/tevent/libtevent.m4 @@ -1,49 +1,51 @@ -dnl find the events sources. This is meant to work both for -dnl standalone builds, and builds of packages using libevents -if test x"$eventsdir" = "x"; then - eventsdir="" - eventspaths="$srcdir $srcdir/../samba4/source/lib/events $srcdir/lib/events $srcdir/events $srcdir/../events" - for d in $eventspaths; do - if test -f "$d/events.c"; then - eventsdir="$d" - AC_SUBST(eventsdir) +dnl find the tevent sources. This is meant to work both for +dnl standalone builds, and builds of packages using libtevent +if test x"$teventdir" = "x"; then + teventdir="" + teventpaths="$srcdir $srcdir/../lib/tevent $srcdir/tevent $srcdir/../tevent" + for d in $teventpaths; do + if test -f "$d/tevent.c"; then + teventdir="$d" + AC_SUBST(teventdir) break; fi done - if test x"$eventsdir" = "x"; then - AC_MSG_ERROR([cannot find libevents source in $eventspaths]) + if test x"$teventdir" = "x"; then + AC_MSG_ERROR([cannot find libtevent source in $teventpaths]) fi fi -EVENTS_OBJ="events.o events_select.o events_signal.o events_timed.o events_standard.o events_debug.o events_util.o" +TEVENT_OBJ="tevent.o tevent_select.o tevent_signal.o tevent_timed.o tevent_standard.o tevent_debug.o tevent_util.o" AC_LIBREPLACE_NETWORK_CHECKS -SMB_ENABLE(EVENTS_EPOLL, NO) -SMB_ENABLE(EVENTS_AIO, NO) +SMB_ENABLE(TEVENT_EPOLL, NO) +SMB_ENABLE(TEVENT_AIO, NO) AC_CHECK_HEADERS(sys/epoll.h) AC_CHECK_FUNCS(epoll_create) if test x"$ac_cv_header_sys_epoll_h" = x"yes" -a x"$ac_cv_func_epoll_create" = x"yes"; then - EVENTS_OBJ="$EVENTS_OBJ events_epoll.o" - SMB_ENABLE(EVENTS_EPOLL,YES) + TEVENT_OBJ="$TEVENT_OBJ tevent_epoll.o" + SMB_ENABLE(TEVENT_EPOLL,YES) + AC_DEFINE(HAVE_EPOLL, 1, [Whether epoll available]) + #TODO: remove HAVE_EVENTS_EPOLL and use HAVE_EPOLL AC_DEFINE(HAVE_EVENTS_EPOLL, 1, [Whether epoll available]) # check for native Linux AIO interface AC_CHECK_HEADERS(libaio.h) AC_CHECK_LIB_EXT(aio, AIO_LIBS, io_getevents) if test x"$ac_cv_header_libaio_h" = x"yes" -a x"$ac_cv_lib_ext_aio_io_getevents" = x"yes";then - EVENTS_OBJ="$EVENTS_OBJ events_aio.o" - SMB_ENABLE(EVENTS_AIO,YES) + TEVENT_OBJ="$TEVENT_OBJ tevent_aio.o" + SMB_ENABLE(TEVENT_AIO,YES) AC_DEFINE(HAVE_LINUX_AIO, 1, [Whether Linux AIO is available]) fi fi -AC_SUBST(EVENTS_OBJ) +AC_SUBST(TEVENT_OBJ) SMB_EXT_LIB(LIBAIO_LINUX, $AIO_LIBS) -EVENTS_CFLAGS="-I$eventsdir" -AC_SUBST(EVENTS_CFLAGS) +TEVENT_CFLAGS="-I$teventdir" +AC_SUBST(TEVENT_CFLAGS) -EVENTS_LIBS="$AIO_LIBS" -AC_SUBST(EVENTS_LIBS) +TEVENT_LIBS="$AIO_LIBS" +AC_SUBST(TEVENT_LIBS) |