Eugene Kotlyarov found out that cygwin's poll() function isn't doing things

right: http://curl.haxx.se/mail/archive-2005-11/0045.html so we now disable
poll() and use select() on cygwin too (we already do the same choice on Mac OS
X)
This commit is contained in:
Daniel Stenberg
2005-11-12 22:49:19 +00:00
parent d58790af17
commit 8a712eb5af
3 changed files with 10 additions and 3 deletions

View File

@@ -1591,10 +1591,10 @@ AC_CHECK_DECL(basename, ,
#endif
)
AC_MSG_CHECKING([if we are Mac OS X (to disable poll)])
AC_MSG_CHECKING([if we are Mac OS X or cygwin to disable poll])
disable_poll=no
case $host in
*-*-darwin*)
*-*-darwin* | *-*-cygwin)
disable_poll="yes";
;;
*)