summaryrefslogtreecommitdiff
path: root/source4/lib/events/config.m4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-01-15 07:15:47 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:40:55 -0500
commit274df78541eec948e546bb98901b5bb00aaadc00 (patch)
tree959390245acf753ef11ddbc78280a9baf8bdacf9 /source4/lib/events/config.m4
parentf5473306c53b53f7e13bce74a0fb1138699afa22 (diff)
downloadsamba-274df78541eec948e546bb98901b5bb00aaadc00.tar.gz
samba-274df78541eec948e546bb98901b5bb00aaadc00.tar.bz2
samba-274df78541eec948e546bb98901b5bb00aaadc00.zip
r20788: - remove epoll configure checks from libreplace
- fix epoll configure checks for the epoll and aio events backends - we should only activate the epoll backend if sys/epoll.h and epoll_create() are found - we should only activate the aio backend if sys/epoll.h, epoll_create(), libaio.h and io_getevents() are found hopefully fix the build on 'bnhtest' in the build farm... metze (This used to be commit d46a5efb03ea1df50567cad00e1589870cdb31fe)
Diffstat (limited to 'source4/lib/events/config.m4')
-rw-r--r--source4/lib/events/config.m428
1 files changed, 13 insertions, 15 deletions
diff --git a/source4/lib/events/config.m4 b/source4/lib/events/config.m4
index 8c61f7ed42..b23407baed 100644
--- a/source4/lib/events/config.m4
+++ b/source4/lib/events/config.m4
@@ -1,19 +1,17 @@
-AC_CHECK_HEADERS(sys/epoll.h)
-
-# check for native Linux AIO interface
-SMB_ENABLE(EVENTS_AIO, NO)
-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
- SMB_ENABLE(EVENTS_AIO,YES)
- AC_DEFINE(HAVE_LINUX_AIO, 1, [Whether Linux AIO is available])
-fi
-SMB_EXT_LIB(LIBAIO_LINUX, $AIO_LIBS)
-
-# check for native Linux AIO interface
+# check for EPOLL and native Linux AIO interface
SMB_ENABLE(EVENTS_EPOLL, NO)
+SMB_ENABLE(EVENTS_AIO, NO)
AC_CHECK_HEADERS(sys/epoll.h)
-if test x"$ac_cv_header_sys_epoll_h" = x"yes";then
+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
SMB_ENABLE(EVENTS_EPOLL,YES)
-fi
+ # 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
+ SMB_ENABLE(EVENTS_AIO,YES)
+ AC_DEFINE(HAVE_LINUX_AIO, 1, [Whether Linux AIO is available])
+ fi
+ SMB_EXT_LIB(LIBAIO_LINUX, $AIO_LIBS)
+fi