summaryrefslogtreecommitdiff
path: root/src/fdevent.h
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2011-12-25 15:35:01 +0000
committerStefan Bühler <stbuehler@web.de>2011-12-25 15:35:01 +0000
commit79bcfab083d8437aff5d03df10fd1e1d5b79ffc7 (patch)
tree5d5c599a440b149861c91a695e0caaf685c74a60 /src/fdevent.h
parentd194c09da94e310a3ca6659367ffe468303135d5 (diff)
downloadlighttpd-git-79bcfab083d8437aff5d03df10fd1e1d5b79ffc7.tar.gz
Move fdevent subsystem includes to implementation files to reduce conflicts (fixes #2373)
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2823 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/fdevent.h')
-rw-r--r--src/fdevent.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/fdevent.h b/src/fdevent.h
index bdc82b5f..9dd9a6c3 100644
--- a/src/fdevent.h
+++ b/src/fdevent.h
@@ -20,18 +20,12 @@
#if defined(HAVE_EPOLL_CTL) && defined(HAVE_SYS_EPOLL_H)
# define USE_LINUX_EPOLL
-# include <sys/epoll.h>
#endif
/* MacOS 10.3.x has poll.h under /usr/include/, all other unixes
* under /usr/include/sys/ */
#if defined HAVE_POLL && (defined(HAVE_SYS_POLL_H) || defined(HAVE_POLL_H))
# define USE_POLL
-# ifdef HAVE_POLL_H
-# include <poll.h>
-# else
-# include <sys/poll.h>
-# endif
#endif
#if defined HAVE_SELECT
@@ -46,7 +40,6 @@
#if defined HAVE_SYS_DEVPOLL_H && defined(__sun)
# define USE_SOLARIS_DEVPOLL
-# include <sys/devpoll.h>
#endif
#if defined HAVE_PORT_H && defined HAVE_PORT_CREATE && defined(__sun)
@@ -56,12 +49,10 @@
#if defined HAVE_SYS_EVENT_H && defined HAVE_KQUEUE
# define USE_FREEBSD_KQUEUE
-# include <sys/event.h>
#endif
#if defined HAVE_LIBEV
# define USE_LIBEV
-# include <ev.h>
#endif
struct server;