diff options
author | Ian Lynagh <igloo@earth.li> | 2011-03-12 21:14:26 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-03-12 21:14:26 +0000 |
commit | 04f4b124ecf03fefee6a05fb0b62b907674a292a (patch) | |
tree | b8759a5add9334c4d8846f0a84410305921ea7d7 /libraries/base/configure.ac | |
parent | ee74f61a7c66ffc942e833505f4d0f44fdf9909a (diff) | |
download | haskell-04f4b124ecf03fefee6a05fb0b62b907674a292a.tar.gz |
Never use epoll_create1; fixes trac #5005
There is little benefit to using epoll_create1 (especially if we still
have the epoll_create code too), and it cuases problems if people build
a GHC binary on one machine and try to use it on another.
Diffstat (limited to 'libraries/base/configure.ac')
-rw-r--r-- | libraries/base/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/configure.ac b/libraries/base/configure.ac index c79c531782..dd6c5c6108 100644 --- a/libraries/base/configure.ac +++ b/libraries/base/configure.ac @@ -32,7 +32,7 @@ AC_CHECK_FUNCS([lstat]) AC_CHECK_FUNCS([getclock getrusage times]) AC_CHECK_FUNCS([_chsize ftruncate]) -AC_CHECK_FUNCS([epoll_create1 epoll_ctl eventfd kevent kevent64 kqueue poll]) +AC_CHECK_FUNCS([epoll_ctl eventfd kevent kevent64 kqueue poll]) # event-related fun |