aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-11-12 22:49:19 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-11-12 22:49:19 +0000
commit8a712eb5afb603465dfe812510dd7077bf626d17 (patch)
tree71e8c1affe0f2155ab40b31f7aa01e553e2fcc11 /configure.ac
parentd58790af174d11d50541505c2f3fdebcc4911d96 (diff)
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)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 629f0ba28..50fa2959c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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";
;;
*)