summaryrefslogtreecommitdiff
path: root/lib/tevent/tevent_internal.h
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_internal.h
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_internal.h')
-rw-r--r--lib/tevent/tevent_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tevent/tevent_internal.h b/lib/tevent/tevent_internal.h
index a439c62743..b654e4b500 100644
--- a/lib/tevent/tevent_internal.h
+++ b/lib/tevent/tevent_internal.h
@@ -153,9 +153,9 @@ int common_event_check_signal(struct tevent_context *ev);
bool tevent_standard_init(void);
bool tevent_select_init(void);
-#if HAVE_EVENTS_EPOLL
+#ifdef HAVE_EPOLL
bool tevent_epoll_init(void);
#endif
-#if HAVE_LINUX_AIO
+#ifdef HAVE_LINUX_AIO
bool tevent_aio_init(void);
#endif