diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-03-02 13:34:57 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-03-02 13:34:57 +0000 |
commit | 7c028a83324bae0e038865f34e8fccbe6d9146f0 (patch) | |
tree | 7551d8e0cb1043139f047949b4e94671bec6412e /m4 | |
parent | 13ac29382f9087d410a96f7ca943b16d39a10afb (diff) | |
download | curl-7c028a83324bae0e038865f34e8fccbe6d9146f0.tar.gz |
- Markus Duft pointed out in bug #2961796 that even though Interix has a
poll() function it doesn't quite work the way we want it so we must disable
it, and he also provided a patch for it.
http://curl.haxx.se/bug/view.cgi?id=2961796
Diffstat (limited to 'm4')
-rw-r--r-- | m4/curl-functions.m4 | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/m4/curl-functions.m4 b/m4/curl-functions.m4 index 70e57d073..9e0e65e41 100644 --- a/m4/curl-functions.m4 +++ b/m4/curl-functions.m4 @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -3815,8 +3815,11 @@ AC_DEFUN([CURL_CHECK_FUNC_POLL], [ tst_allow_poll="unknown" # case $host_os in - darwin*) - dnl poll does not work on this platform + darwin*|interix*) + dnl poll() does not work on these platforms + dnl Interix: "does provide poll(), but the implementing developer must + dnl have been in a bad mood, because poll() only works on the /proc + dnl filesystem here" curl_disallow_poll="yes" ;; esac |