summaryrefslogtreecommitdiff
path: root/ctdb/lib/events/config.m4
diff options
context:
space:
mode:
Diffstat (limited to 'ctdb/lib/events/config.m4')
-rw-r--r--ctdb/lib/events/config.m418
1 files changed, 0 insertions, 18 deletions
diff --git a/ctdb/lib/events/config.m4 b/ctdb/lib/events/config.m4
deleted file mode 100644
index 180b58cbc6a..00000000000
--- a/ctdb/lib/events/config.m4
+++ /dev/null
@@ -1,18 +0,0 @@
-# check for EPOLL and native Linux AIO interface
-SMB_ENABLE(EVENTS_EPOLL, NO)
-SMB_ENABLE(EVENTS_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
- SMB_ENABLE(EVENTS_EPOLL,YES)
- AC_DEFINE(HAVE_EVENTS_EPOLL, 1, [Whether epoll is 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
- SMB_ENABLE(EVENTS_AIO,YES)
- AC_DEFINE(HAVE_LINUX_AIO, 1, [Whether Linux AIO is available])
- fi
-fi
-SMB_EXT_LIB(LIBAIO_LINUX, $AIO_LIBS)