diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-10-06 22:03:11 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-10-06 22:03:11 +0000 |
commit | bf20ed5984be04f5751b741714e4fae6b87f5784 (patch) | |
tree | 2ab23250029f024d51de4c92bed31b947227617f | |
parent | 9d5c22d5aee34e547ab8a01e1259d8f1862c1b23 (diff) |
O_NONBLOCK does not work on BeOS according to Shard
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index d2156d350..f847a8fbd 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -30,7 +30,7 @@ AC_DEFUN(CURL_CHECK_NONBLOCKING_SOCKET, # define PLATFORM_AIX_V3 #endif -#if defined(PLATFORM_SUNOS4) || defined(PLATFORM_AIX_V3) +#if defined(PLATFORM_SUNOS4) || defined(PLATFORM_AIX_V3) || defined(__BEOS__) #error "O_NONBLOCK does not work on this platform" #endif int socket; |