1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

Disable the timerfd interface on Cygwin

* configure.ac (emacs_cv_have_timerfd): Set to "no" on Cygwin.
This commit is contained in:
Ken Brown 2019-02-22 09:53:52 -05:00
parent 3707ea434f
commit 6d46fa961c

View File

@ -4145,6 +4145,10 @@ AC_SUBST(LIBS_TERMCAP)
AC_SUBST(TERMCAP_OBJ)
# GNU/Linux-specific timer functions.
# Bug#34618.
if test "$opsys" = "cygwin"; then
emacs_cv_have_timerfd=no
fi
AC_CACHE_CHECK([for timerfd interface], [emacs_cv_have_timerfd],
[AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([[#include <sys/timerfd.h>