summaryrefslogtreecommitdiff
path: root/lib/tevent/tevent.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-01-02 13:39:26 +0100
committerStefan Metzmacher <metze@samba.org>2009-01-02 18:16:51 +0100
commitb12e78e64517d423aefecc84f23499b13aedd734 (patch)
tree7561678667ffcc80959567a568511e7fc9e1c355 /lib/tevent/tevent.c
parentd9529a331afaf1c82b24becc1d0d245e19d518aa (diff)
downloadsamba-b12e78e64517d423aefecc84f23499b13aedd734.tar.gz
samba-b12e78e64517d423aefecc84f23499b13aedd734.tar.bz2
samba-b12e78e64517d423aefecc84f23499b13aedd734.zip
tevent: use HAVE_EPOLL instead of HAVE_EVENTS_EPOLL
metze
Diffstat (limited to 'lib/tevent/tevent.c')
-rw-r--r--lib/tevent/tevent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tevent/tevent.c b/lib/tevent/tevent.c
index 676a3dc398..f79e4cefb5 100644
--- a/lib/tevent/tevent.c
+++ b/lib/tevent/tevent.c
@@ -108,10 +108,10 @@ static void tevent_backend_init(void)
{
tevent_select_init();
tevent_standard_init();
-#if HAVE_EVENTS_EPOLL
+#ifdef HAVE_EPOLL
tevent_epoll_init();
#endif
-#if HAVE_LINUX_AIO
+#ifdef HAVE_LINUX_AIO
tevent_aio_init();
#endif
}