diff options
author | Daniel Johnson <daniel.johnson31@gmail.com> | 2014-05-06 05:08:26 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-05-06 08:31:10 +0200 |
commit | 5fe879555d766ccf28b0b62d4a945636b3cca388 (patch) | |
tree | 55225eaaac7f13ff492c044bb834d4181ac757fe /m4/curl-functions.m4 | |
parent | 9987106f53c829bf3fe9409d9ec291bb609531d1 (diff) | |
download | curl-5fe879555d766ccf28b0b62d4a945636b3cca388.tar.gz |
Enable poll on darwin13
Poll has long been broken on Mac OS X. Starting with 10.9 (darwin13) it
now works correctly so this patch enables it there.
Diffstat (limited to 'm4/curl-functions.m4')
-rw-r--r-- | m4/curl-functions.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/curl-functions.m4 b/m4/curl-functions.m4 index fdf004b8e..0d6542121 100644 --- a/m4/curl-functions.m4 +++ b/m4/curl-functions.m4 @@ -4729,7 +4729,7 @@ AC_DEFUN([CURL_CHECK_FUNC_POLL], [ tst_allow_poll="unknown" # case $host_os in - darwin*|interix*) + darwin[[123456789]].*|darwin10.*|darwin11.*|darwin12.*|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 |