From c0025015ac30ae3c61388eb98f39f495926fe5d1 Mon Sep 17 00:00:00 2001 From: Ken Brown Date: Fri, 22 Feb 2019 09:53:52 -0500 Subject: [PATCH] Disable the timerfd interface on Cygwin * configure.ac (emacs_cv_have_timerfd): Set to "no" on Cygwin. --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index d5e802a961..0783b6455a 100644 --- a/configure.ac +++ b/configure.ac @@ -4145,6 +4145,10 @@ AC_DEFUN AC_SUBST(TERMCAP_OBJ) # GNU/Linux-specific timer functions. +# Bug #?????. +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 -- 2.17.0