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:
@@ -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";
|
||||
;;
|
||||
*)
|
||||
|
||||
Reference in New Issue
Block a user