diff options
author | Sylvain HENRY <hsyl20@gmail.com> | 2016-03-05 20:00:06 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-03-05 20:00:19 +0100 |
commit | 120b9cdb31878ecee442c0a4bb9532a9d30c0c64 (patch) | |
tree | 7e82913ecf406e9657b184911b81f0fc9c5a0302 /configure.ac | |
parent | 1f3d953e97f3c107f76d992bd087ed91f72d24e1 (diff) | |
download | haskell-120b9cdb31878ecee442c0a4bb9532a9d30c0c64.tar.gz |
rts/timer: use timerfd_* on Linux instead of alarm signals
Reviewers: erikd, simonmar, austin, bgamari
Reviewed By: simonmar, bgamari
Subscribers: hvr, thomie
Differential Revision: https://phabricator.haskell.org/D1947
GHC Trac Issues: #10840
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index cc162e7c08..adc22dd019 100644 --- a/configure.ac +++ b/configure.ac @@ -766,7 +766,7 @@ dnl off_t, because it will affect the result of that test. AC_SYS_LARGEFILE dnl ** check for specific header (.h) files that we are interested in -AC_CHECK_HEADERS([ctype.h dirent.h dlfcn.h errno.h fcntl.h grp.h limits.h locale.h nlist.h pthread.h pwd.h signal.h sys/param.h sys/mman.h sys/resource.h sys/select.h sys/time.h sys/timeb.h sys/timers.h sys/times.h sys/utsname.h sys/wait.h termios.h time.h utime.h windows.h winsock.h sched.h]) +AC_CHECK_HEADERS([ctype.h dirent.h dlfcn.h errno.h fcntl.h grp.h limits.h locale.h nlist.h pthread.h pwd.h signal.h sys/param.h sys/mman.h sys/resource.h sys/select.h sys/time.h sys/timeb.h sys/timerfd.h sys/timers.h sys/times.h sys/utsname.h sys/wait.h termios.h time.h utime.h windows.h winsock.h sched.h]) dnl sys/cpuset.h needs sys/param.h to be included first on FreeBSD 9.1; #7708 AC_CHECK_HEADERS([sys/cpuset.h], [], [], |